diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-07-16 02:10:13 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-07-16 02:10:13 (GMT) |
commit | 0bd152cd67fef5c238ed15ba2ce09f6a74e8d334 (patch) | |
tree | c1db691553896d0c95fbd39055b330e6a79a6861 /Misc | |
parent | e720725c12e37a1081e2f493b67254096f6d5aa3 (diff) | |
download | cpython-0bd152cd67fef5c238ed15ba2ce09f6a74e8d334.zip cpython-0bd152cd67fef5c238ed15ba2ce09f6a74e8d334.tar.gz cpython-0bd152cd67fef5c238ed15ba2ce09f6a74e8d334.tar.bz2 |
remove ast.__version__ (closes #12273)
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.3 Alpha 1? Core and Builtins ----------------- +- Issue #12273: Remove ast.__version__. AST changes can be accounted for by + checking sys.version_info or sys._mercurial. + - Issue #11627: Fix segfault when __new__ on a exception returns a non-exception class. |