diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-24 07:07:34 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-24 07:07:34 +0000 |
commit | 2b499436b54cbd7c2f9ba71d1303f401bd929127 (patch) | |
tree | e02430aeaa5e90ce3e806279aabc2db77a7c7b51 /Lib/compiler/ast.py | |
parent | 0fb43762d5e0991da443887a27b277f199041b75 (diff) | |
download | cpython-git-2b499436b54cbd7c2f9ba71d1303f401bd929127.tar.gz |
Ok, compiler.transformer can really be imported now
Diffstat (limited to 'Lib/compiler/ast.py')
-rw-r--r-- | Lib/compiler/ast.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/compiler/ast.py b/Lib/compiler/ast.py index 08e0c6a446..8dcdf68ada 100644 --- a/Lib/compiler/ast.py +++ b/Lib/compiler/ast.py @@ -2,7 +2,7 @@ This file is automatically generated by Tools/compiler/astgen.py """ -from consts import CO_VARARGS, CO_VARKEYWORDS +from compiler.consts import CO_VARARGS, CO_VARKEYWORDS def flatten(seq): l = [] |