commit | 577b5b960d33c822f95c142e6be6dc0c819d529e | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Mon Feb 27 15:23:19 2006 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Mon Feb 27 15:23:19 2006 +0000 |
tree | 9f6aae1642492ae5d60b465226b1c80e5b59184c | |
parent | 2086eaf79c9dc2992fef64392a9813e25f60696f [diff] [blame] |
Create _ast module. Cleanup Python-ast.c generation.
diff --git a/Misc/NEWS b/Misc/NEWS index f5f79e4..2cc753f 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -76,7 +76,7 @@ - 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))