Kaydet (Commit) 3d1bfbf9 authored tarafından Mark Dickinson's avatar Mark Dickinson

unparse.py: Typo fix.

üst fa2e4e9d
...@@ -549,7 +549,7 @@ class Unparser: ...@@ -549,7 +549,7 @@ class Unparser:
def roundtrip(filename, output=sys.stdout): def roundtrip(filename, output=sys.stdout):
source = open(filename).read() 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) Unparser(tree, output)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment