summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-02-26 19:42:26 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2006-02-26 19:42:26 (GMT)
commitbd260da900b5c5f16e5c61f6795d08171b33e0f8 (patch)
tree0880faf7b6da37250984d1a0e6e6c5a0faa25f06 /Misc
parent23b0dc50535d7eaf2f322b04da7a7f86815fcc8f (diff)
downloadcpython-bd260da900b5c5f16e5c61f6795d08171b33e0f8.zip
cpython-bd260da900b5c5f16e5c61f6795d08171b33e0f8.tar.gz
cpython-bd260da900b5c5f16e5c61f6795d08171b33e0f8.tar.bz2
Generate code to recursively copy an AST into
a tree of Python objects. Expose this through compile().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 3 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e5c5e40..f5f79e4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -74,7 +74,9 @@ Core and builtins
- Speed up some Unicode operations.
-- A new AST parser implementation was completed.
+- A new AST parser implementation was completed. The abstract
+ syntax tree is available for read-only (non-compile) access
+ to Python code.
- SF bug #1167751: fix incorrect code being for generator expressions.
The following code now raises a SyntaxError: foo(a = i for i in range(10))