]> granicus.if.org Git - python/commitdiff
Issue #22258: Fix typo in Misc/NEWS
authorVictor Stinner <victor.stinner@gmail.com>
Thu, 4 Sep 2014 07:29:39 +0000 (09:29 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Thu, 4 Sep 2014 07:29:39 +0000 (09:29 +0200)
Misc/NEWS

index 8117cbe0b8b53f2766a28683fe5d6a9c06759870..26bcda4a41ff105f317ca50d162ea255cf50bb53 100644 (file)
--- 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``).