summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-10-10 01:25:38 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-10-10 01:25:38 (GMT)
commitc9a6ab56cfae90c96c1361314c3c99b32e114446 (patch)
treec91481d3bf7f9f1c1ea440d8af45427e26bd1a4e /Misc
parentff1f3d9ff195eb59076f20969f3a49ecf72067b4 (diff)
downloadcpython-c9a6ab56cfae90c96c1361314c3c99b32e114446.zip
cpython-c9a6ab56cfae90c96c1361314c3c99b32e114446.tar.gz
cpython-c9a6ab56cfae90c96c1361314c3c99b32e114446.tar.bz2
Issue #24402: Fix input() when stdout.fileno() fails; diagnosed by Eryksun
Also factored out some test cases into a new PtyTests class.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ba7e54d..ef39bb4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: tba
Core and Builtins
-----------------
+- Issue #24402: Fix input() to prompt to the redirected stdout when
+ sys.stdout.fileno() fails.
+
- Issue #24806: Prevent builtin types that are not allowed to be subclassed from
being subclassed through multiple inheritance.