diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-08-09 21:15:04 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-08-09 21:15:04 (GMT) |
commit | 832bfe2ebd5ecfa92031cd40c8b41835ba90487f (patch) | |
tree | 7677d685b8f7a7ca7901f2589d92753513b66e01 /Misc | |
parent | 450bb594c8be8aca2782c0a862b27d9fa79160b0 (diff) | |
download | cpython-832bfe2ebd5ecfa92031cd40c8b41835ba90487f.zip cpython-832bfe2ebd5ecfa92031cd40c8b41835ba90487f.tar.gz cpython-832bfe2ebd5ecfa92031cd40c8b41835ba90487f.tar.bz2 |
add a AST validator (closes #12575)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -10,6 +10,8 @@ What's New in Python 3.3 Alpha 1? Core and Builtins ----------------- +- Issue #12575: Validate user-generated AST before it is compiled. + - Make type(None), type(Ellipsis), and type(NotImplemented) callable. They return the respective singleton instances. |