commit | 3d1bfbf9a60b995771593e9c4323da29f44a5ec7 | [log] [tgz] |
---|---|---|
author | Mark Dickinson <dickinsm@gmail.com> | Mon Jun 28 21:39:51 2010 +0000 |
committer | Mark Dickinson <dickinsm@gmail.com> | Mon Jun 28 21:39:51 2010 +0000 |
tree | cdb660d10bd70ff792cbf0f912285b0aeed28885 | |
parent | fa2e4e9d046a9554bc201a0d5a1f7ef739c82bd3 [diff] [blame] |
unparse.py: Typo fix.
diff --git a/Demo/parser/unparse.py b/Demo/parser/unparse.py index 715f98b..1c034ba 100644 --- a/Demo/parser/unparse.py +++ b/Demo/parser/unparse.py
@@ -549,7 +549,7 @@ def roundtrip(filename, output=sys.stdout): source = open(filename).read() - tree = compile(source, filename, "exec", _ast.PyCF_ONLY_AST) + tree = compile(source, filename, "exec", ast.PyCF_ONLY_AST) Unparser(tree, output)