summaryrefslogtreecommitdiffstats
path: root/Misc/HISTORY
diff options
context:
space:
mode:
authorINADA Naoki <methane@users.noreply.github.com>2018-03-28 13:07:57 (GMT)
committerGitHub <noreply@github.com>2018-03-28 13:07:57 (GMT)
commit40a536be5337d3723285d597e2906394b26816a5 (patch)
treea2a6ec359aeb4c053210b7e43fc9e52969dd3dad /Misc/HISTORY
parentc0518cde7a8404f310cd3495e77e612820ecad4f (diff)
downloadcpython-40a536be5337d3723285d597e2906394b26816a5.zip
cpython-40a536be5337d3723285d597e2906394b26816a5.tar.gz
cpython-40a536be5337d3723285d597e2906394b26816a5.tar.bz2
s/the the/the/ (GH-6287)
Diffstat (limited to 'Misc/HISTORY')
-rw-r--r--Misc/HISTORY2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/HISTORY b/Misc/HISTORY
index 26c7f20..d4a1b16 100644
--- a/Misc/HISTORY
+++ b/Misc/HISTORY
@@ -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``).