diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-02-27 15:23:19 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-02-27 15:23:19 (GMT) |
commit | 577b5b960d33c822f95c142e6be6dc0c819d529e (patch) | |
tree | 9f6aae1642492ae5d60b465226b1c80e5b59184c /Misc/NEWS | |
parent | 2086eaf79c9dc2992fef64392a9813e25f60696f (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)) |