summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-09-04 07:29:39 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-09-04 07:29:39 (GMT)
commit654c037b658ed6594a7dea83b58a58b24ec7f250 (patch)
tree0d8960fa420968afac8e9f5dee81b5009aebcd7f /Misc
parentf29468118b3c2327034ef36e6efd26f96375aa7b (diff)
downloadcpython-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/NEWS2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8117cbe..26bcda4 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``).