summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-09-02 09:49:48 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-09-02 09:49:48 (GMT)
commit8257b6283e3ea41f5746835871dedcb00139bdfe (patch)
treeac4faa143dee7dbe08579bb12ec25fb17f8017c7 /Misc
parent7809569a2ea1a9d330ad7a5949bc43f835c1a276 (diff)
parent282124b8c4a277d634435c3a2fb2353abd567c31 (diff)
downloadcpython-8257b6283e3ea41f5746835871dedcb00139bdfe.zip
cpython-8257b6283e3ea41f5746835871dedcb00139bdfe.tar.gz
cpython-8257b6283e3ea41f5746835871dedcb00139bdfe.tar.bz2
(Merge 3.4) Closes #22258: Fix the the internal function set_inheritable() on
Illumos. This platform exposes the function ioctl(FIOCLEX), but calling it fails with errno is ENOTTY: "Inappropriate ioctl for device". set_inheritable() now falls back to the slower fcntl() (F_GETFD and then F_SETFD).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d0e3d72..71ab268 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,11 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #22258: Fix the the internal function set_inheritable() on Illumos.
+ This platform exposes the function ``ioctl(FIOCLEX)``, but calling it fails
+ with errno is ENOTTY: "Inappropriate ioctl for device". set_inheritable()
+ now falls back to the slower ``fcntl()`` (``F_GETFD`` and then ``F_SETFD``).
+
- Issue #21389: Displaying the __qualname__ of the underlying function in the
repr of a bound method.