summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-02-27 15:23:19 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2006-02-27 15:23:19 (GMT)
commit577b5b960d33c822f95c142e6be6dc0c819d529e (patch)
tree9f6aae1642492ae5d60b465226b1c80e5b59184c /Misc/NEWS
parent2086eaf79c9dc2992fef64392a9813e25f60696f (diff)
downloadcpython-577b5b960d33c822f95c142e6be6dc0c819d529e.zip
cpython-577b5b960d33c822f95c142e6be6dc0c819d529e.tar.gz
cpython-577b5b960d33c822f95c142e6be6dc0c819d529e.tar.bz2
Create _ast module.
Cleanup Python-ast.c generation.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f5f79e4..2cc753f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -76,7 +76,7 @@ Core and builtins
- A new AST parser implementation was completed. The abstract
syntax tree is available for read-only (non-compile) access
- to Python code.
+ to Python code; an _ast module was added.
- 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))