commit | b902f4e401bbf5ada3494c4fb7eeab605a370e10 | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Mon Apr 03 04:45:34 2006 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Mon Apr 03 04:45:34 2006 +0000 |
tree | 5fe70c6b50f12d41bce604fd031d432b84d8e76b | |
parent | 480725d4c5bd3738c1f1fc7af74fa8825705c428 [diff] [blame] |
Use absolute imports
diff --git a/Lib/compiler/ast.py b/Lib/compiler/ast.py index 08e0c6a..8dcdf68 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 = []