Commit 654c037b authored by Victor Stinner's avatar Victor Stinner

Issue #22258: Fix typo in Misc/NEWS

parent f2946811
...@@ -10,7 +10,7 @@ Release date: TBA ...@@ -10,7 +10,7 @@ Release date: TBA
Core and Builtins 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 This platform exposes the function ``ioctl(FIOCLEX)``, but calling it fails
with errno is ENOTTY: "Inappropriate ioctl for device". set_inheritable() with errno is ENOTTY: "Inappropriate ioctl for device". set_inheritable()
now falls back to the slower ``fcntl()`` (``F_GETFD`` and then ``F_SETFD``). now falls back to the slower ``fcntl()`` (``F_GETFD`` and then ``F_SETFD``).
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment