s/the the/the/ (GH-6287)

(cherry picked from commit 40a536be53)

Co-authored-by: INADA Naoki <methane@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2018-03-28 06:23:32 -07:00 committed by GitHub
parent b9172b9630
commit 6cb556ffa6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -463,7 +463,7 @@ Glossary
hash-based pyc 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 time of the corresponding source file to determine its validity. See
:ref:`pyc-invalidation`. :ref:`pyc-invalidation`.

View file

@ -1389,7 +1389,7 @@ Release date: 2014-09-22
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``).