summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-07-16 02:10:13 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-07-16 02:10:13 (GMT)
commit0bd152cd67fef5c238ed15ba2ce09f6a74e8d334 (patch)
treec1db691553896d0c95fbd39055b330e6a79a6861 /Misc
parente720725c12e37a1081e2f493b67254096f6d5aa3 (diff)
downloadcpython-0bd152cd67fef5c238ed15ba2ce09f6a74e8d334.zip
cpython-0bd152cd67fef5c238ed15ba2ce09f6a74e8d334.tar.gz
cpython-0bd152cd67fef5c238ed15ba2ce09f6a74e8d334.tar.bz2
remove ast.__version__ (closes #12273)
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 e75de01..dd40d40 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.