diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-06-28 21:39:51 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-06-28 21:39:51 (GMT) |
commit | 3d1bfbf9a60b995771593e9c4323da29f44a5ec7 (patch) | |
tree | cdb660d10bd70ff792cbf0f912285b0aeed28885 /Demo | |
parent | fa2e4e9d046a9554bc201a0d5a1f7ef739c82bd3 (diff) | |
download | cpython-3d1bfbf9a60b995771593e9c4323da29f44a5ec7.zip cpython-3d1bfbf9a60b995771593e9c4323da29f44a5ec7.tar.gz cpython-3d1bfbf9a60b995771593e9c4323da29f44a5ec7.tar.bz2 |
unparse.py: Typo fix.
Diffstat (limited to 'Demo')
-rw-r--r-- | Demo/parser/unparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ class Unparser: 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) |