]> granicus.if.org Git - python/commitdiff
s/the the/the/ (GH-6287)
authorINADA Naoki <methane@users.noreply.github.com>
Wed, 28 Mar 2018 13:07:57 +0000 (22:07 +0900)
committerGitHub <noreply@github.com>
Wed, 28 Mar 2018 13:07:57 +0000 (22:07 +0900)
Doc/glossary.rst
Misc/HISTORY

index dcfe086b38b12ff0fbd1fb5ff5763086db5811b3..2eab003146829b5238d7d1e6c6399f6aed2041bd 100644 (file)
@@ -463,7 +463,7 @@ Glossary
 
 
    hash-based pyc
-      A bytecode cache file that uses the the hash rather than the last-modified
+      A bytecode cache file that uses the hash rather than the last-modified
       time of the corresponding source file to determine its validity. See
       :ref:`pyc-invalidation`.
 
index 26c7f2074d7b662ef447d44335fd88896b04d3aa..d4a1b16a7c0486b6b3ec4cc2eeab491fd6b081fc 100644 (file)
@@ -1389,7 +1389,7 @@ Release date: 2014-09-22
 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``).