diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-10-10 01:25:38 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-10-10 01:25:38 (GMT) |
commit | c9a6ab56cfae90c96c1361314c3c99b32e114446 (patch) | |
tree | c91481d3bf7f9f1c1ea440d8af45427e26bd1a4e /Misc | |
parent | ff1f3d9ff195eb59076f20969f3a49ecf72067b4 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |