summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2012-12-27 19:38:04 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2012-12-27 19:38:04 (GMT)
commit07e0e06f8a255a73d181e332dd8658814eb1ca50 (patch)
tree1b611b45e24e3134804ac72adc103c8258746e84 /Misc
parentc8bd74ddfd5a41e8f37181bf4ba3c9e37b6d65b1 (diff)
downloadcpython-07e0e06f8a255a73d181e332dd8658814eb1ca50.zip
cpython-07e0e06f8a255a73d181e332dd8658814eb1ca50.tar.gz
cpython-07e0e06f8a255a73d181e332dd8658814eb1ca50.tar.bz2
Issue #16504: Catch SyntaxErrors raised by tokenizer in IDLE.
Patch by Roger Serwy.
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 08d3e36..d13a406 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -182,6 +182,9 @@ Core and Builtins
Library
-------
+- Issue #16504: IDLE now catches SyntaxErrors raised by tokenizer. Patch by
+ Roger Serwy.
+
- Issue #16618: Make glob.glob match consistently across strings and bytes
regarding leading dots. Patch by Serhiy Storchaka.