From 654c037b658ed6594a7dea83b58a58b24ec7f250 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 4 Sep 2014 09:29:39 +0200 Subject: [PATCH] Issue #22258: Fix typo in Misc/NEWS --- Misc/NEWS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/NEWS b/Misc/NEWS index 8117cbe0b8b..26bcda4a41f 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``).