From: Victor Stinner Date: Thu, 4 Sep 2014 07:29:39 +0000 (+0200) Subject: Issue #22258: Fix typo in Misc/NEWS X-Git-Tag: v3.5.0a1~964 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=654c037b658ed6594a7dea83b58a58b24ec7f250;p=thirdparty%2FPython%2Fcpython.git Issue #22258: Fix typo in Misc/NEWS --- diff --git a/Misc/NEWS b/Misc/NEWS index 8117cbe0b8b5..26bcda4a41ff 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,7 +10,7 @@ Release date: TBA Core and Builtins ----------------- -- Issue #22258: Fix the the internal function set_inheritable() on Illumos. +- Issue #22258: Fix 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``).