summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-07-22 15:50:23 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-07-22 15:50:23 (GMT)
commit2193d2b72bc942a0c0b489a9c2759a6aefbeecdf (patch)
tree76d553c58f5e909d09aef21e6131ec797e72c3d7 /Misc
parent996f606787a7aba177f738157acd672b5821be4c (diff)
downloadcpython-2193d2b72bc942a0c0b489a9c2759a6aefbeecdf.zip
cpython-2193d2b72bc942a0c0b489a9c2759a6aefbeecdf.tar.gz
cpython-2193d2b72bc942a0c0b489a9c2759a6aefbeecdf.tar.bz2
type check AST strings and identifiers
This is related to a21829180423 as well as #12609 and #12610.
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 c1162ed..b3ecefd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.2?
Core and Builtins
-----------------
+- Verify the types of AST strings and identifiers provided by the user before
+ compiling them.
+
- Issue #12579: str.format_map() now raises a ValueError if used on a
format string that contains positional fields. Initial patch by
Julian Berman.