summaryrefslogtreecommitdiffstats
path: root/Lib/compiler/transformer.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-04-03 04:45:34 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-04-03 04:45:34 (GMT)
commitb902f4e401bbf5ada3494c4fb7eeab605a370e10 (patch)
tree5fe70c6b50f12d41bce604fd031d432b84d8e76b /Lib/compiler/transformer.py
parent480725d4c5bd3738c1f1fc7af74fa8825705c428 (diff)
downloadcpython-b902f4e401bbf5ada3494c4fb7eeab605a370e10.zip
cpython-b902f4e401bbf5ada3494c4fb7eeab605a370e10.tar.gz
cpython-b902f4e401bbf5ada3494c4fb7eeab605a370e10.tar.bz2
Use absolute imports
Diffstat (limited to 'Lib/compiler/transformer.py')
-rw-r--r--Lib/compiler/transformer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/compiler/transformer.py b/Lib/compiler/transformer.py
index cc91b4f..8225dfa 100644
--- a/Lib/compiler/transformer.py
+++ b/Lib/compiler/transformer.py
@@ -34,8 +34,8 @@ import sys
class WalkerError(StandardError):
pass
-from consts import CO_VARARGS, CO_VARKEYWORDS
-from consts import OP_ASSIGN, OP_DELETE, OP_APPLY
+from compiler.consts import CO_VARARGS, CO_VARKEYWORDS
+from compiler.consts import OP_ASSIGN, OP_DELETE, OP_APPLY
def parseFile(path):
f = open(path, "U")