From: Victor Stinner Date: Thu, 19 May 2016 14:48:06 +0000 (+0200) Subject: Merge 3.5 (issue #27057) X-Git-Tag: v3.6.0a2~264 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4a3443be43986c4b8c59a6127c04a44e5caf66f1;p=thirdparty%2FPython%2Fcpython.git Merge 3.5 (issue #27057) --- 4a3443be43986c4b8c59a6127c04a44e5caf66f1 diff --cc Misc/NEWS index 11152361e003,fcfcd4f5514e..f10ad244865e --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -297,11 -122,13 +297,15 @@@ Core and Builtin 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 #27031: Removed dummy methods in Tkinter widget classes: tk_menuBar() + and tk_bindForTraversal(). + - Issue #14132: Fix urllib.request redirect handling when the target only has a query string. Original fix by Ján Janech.