diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-05-19 14:46:18 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-05-19 14:46:18 (GMT) |
commit | 3116cc44af1de8f261f642baba50e254b5e1592d (patch) | |
tree | 5723144656278b10936898099aca18faf3a9c1bc /Misc | |
parent | 4962141804676b34c372c8d6941eaf8edab3bfce (diff) | |
download | cpython-3116cc44af1de8f261f642baba50e254b5e1592d.zip cpython-3116cc44af1de8f261f642baba50e254b5e1592d.tar.gz cpython-3116cc44af1de8f261f642baba50e254b5e1592d.tar.bz2 |
Fix os.set_inheritable() on Android
Issue #27057: Fix os.set_inheritable() on Android, ioctl() is blocked by
SELinux and fails with EACCESS. The function now falls back to fcntl().
Patch written by Michał Bednarski.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -110,6 +110,7 @@ Neal Becker Robin Becker Torsten Becker Bill Bedford +Michał Bednarski Ian Beer Stefan Behnel Reimer Behrends @@ -123,6 +123,10 @@ Core and Builtins Library ------- +- Issue #27057: Fix os.set_inheritable() on Android, ioctl() is blocked by + SELinux and fails with EACCESS. The function now falls back to fcntl(). + Patch written by Michał Bednarski. + - Issue #27014: Fix infinite recursion using typing.py. Thanks to Kalle Tuure! - Issue #14132: Fix urllib.request redirect handling when the target only has |