diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-05 23:34:26 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-05 23:34:26 (GMT) |
commit | 0d776b1ce849ff0646738b6361ef940ab6f8b9cb (patch) | |
tree | 32c396ebf076d76535d5da7eef47fefad790e87f /Misc | |
parent | c2f0a46111dfc9958d1c0428f688b8f625888c88 (diff) | |
download | cpython-0d776b1ce849ff0646738b6361ef940ab6f8b9cb.zip cpython-0d776b1ce849ff0646738b6361ef940ab6f8b9cb.tar.gz cpython-0d776b1ce849ff0646738b6361ef940ab6f8b9cb.tar.bz2 |
Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode
error handler in interactive mode (when calling into PyOS_Readline()).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.2.3? Core and Builtins ----------------- +- Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode + error handler in interactive mode (when calling into PyOS_Readline()). + - Issue #13340: Accept None as start and stop parameters for list.index() and tuple.index(). |