mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Use absolute imports
This commit is contained in:
parent
480725d4c5
commit
b902f4e401
7 changed files with 11 additions and 10 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue