diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-09-04 07:29:39 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-09-04 07:29:39 (GMT) |
commit | 654c037b658ed6594a7dea83b58a58b24ec7f250 (patch) | |
tree | 0d8960fa420968afac8e9f5dee81b5009aebcd7f /Misc | |
parent | f29468118b3c2327034ef36e6efd26f96375aa7b (diff) | |
download | cpython-654c037b658ed6594a7dea83b58a58b24ec7f250.zip cpython-654c037b658ed6594a7dea83b58a58b24ec7f250.tar.gz cpython-654c037b658ed6594a7dea83b58a58b24ec7f250.tar.bz2 |
Issue #22258: Fix typo in Misc/NEWS
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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``). |