From: Mark Dickinson Date: Mon, 28 Jun 2010 21:39:51 +0000 (+0000) Subject: unparse.py: Typo fix. X-Git-Tag: v3.2a1~397 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3d1bfbf9a60b995771593e9c4323da29f44a5ec7;p=thirdparty%2FPython%2Fcpython.git unparse.py: Typo fix. --- diff --git a/Demo/parser/unparse.py b/Demo/parser/unparse.py index 715f98b514fc..1c034bab9606 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)