diff options
| author | Mark Dickinson <dickinsm@gmail.com> | 2010-06-28 21:39:51 +0000 | 
|---|---|---|
| committer | Mark Dickinson <dickinsm@gmail.com> | 2010-06-28 21:39:51 +0000 | 
| commit | 3d1bfbf9a60b995771593e9c4323da29f44a5ec7 (patch) | |
| tree | cdb660d10bd70ff792cbf0f912285b0aeed28885 /Demo/parser | |
| parent | fa2e4e9d046a9554bc201a0d5a1f7ef739c82bd3 (diff) | |
| download | cpython-git-3d1bfbf9a60b995771593e9c4323da29f44a5ec7.tar.gz | |
unparse.py: Typo fix.
Diffstat (limited to 'Demo/parser')
| -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 715f98b514..1c034bab96 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)  | 
