summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-03-12 16:46:44 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-03-12 16:46:44 (GMT)
commit7e0dbfbbdea946e620804641755686475652c9d0 (patch)
treee35bb7f1c8cbc8c0cd656a2ac9d54b5222f6f710 /Misc
parent61a4161de4075918c1ad5f225498171290454e5d (diff)
downloadcpython-7e0dbfbbdea946e620804641755686475652c9d0.zip
cpython-7e0dbfbbdea946e620804641755686475652c9d0.tar.gz
cpython-7e0dbfbbdea946e620804641755686475652c9d0.tar.bz2
give the AST class a __dict__
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7055bd3..cd522dc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.3.0 Alpha 2?
Core and Builtins
-----------------
+- Give the ast.AST class a __dict__.
+
- Issue #1469629: Allow cycles through an object's __dict__ slot to be
collected. (For example if ``x.__dict__ is x``).