summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-11-05 23:34:26 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-11-05 23:34:26 (GMT)
commit0d776b1ce849ff0646738b6361ef940ab6f8b9cb (patch)
tree32c396ebf076d76535d5da7eef47fefad790e87f /Misc
parentc2f0a46111dfc9958d1c0428f688b8f625888c88 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 720fef3..e550b52 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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().