summaryrefslogtreecommitdiff
path: root/Lib/compiler/transformer.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-03-24 07:07:34 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2006-03-24 07:07:34 +0000
commit2b499436b54cbd7c2f9ba71d1303f401bd929127 (patch)
treee02430aeaa5e90ce3e806279aabc2db77a7c7b51 /Lib/compiler/transformer.py
parent0fb43762d5e0991da443887a27b277f199041b75 (diff)
downloadcpython-git-2b499436b54cbd7c2f9ba71d1303f401bd929127.tar.gz
Ok, compiler.transformer can really be imported now
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 504e283b0a..604c57adfd 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")