mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
parent
ecfeb7f095
commit
70a6b49821
246 changed files with 926 additions and 962 deletions
|
|
@ -273,8 +273,8 @@ class ModuleLoader(BasicModuleLoader):
|
|||
elif type == PKG_DIRECTORY:
|
||||
m = self.hooks.load_package(name, filename, file)
|
||||
else:
|
||||
raise ImportError, "Unrecognized module type (%s) for %s" % \
|
||||
(`type`, name)
|
||||
raise ImportError, "Unrecognized module type (%r) for %s" % \
|
||||
(type, name)
|
||||
finally:
|
||||
if file: file.close()
|
||||
m.__file__ = filename
|
||||
|
|
@ -299,8 +299,8 @@ class FancyModuleLoader(ModuleLoader):
|
|||
if inittype not in (PY_COMPILED, PY_SOURCE):
|
||||
if initfile: initfile.close()
|
||||
raise ImportError, \
|
||||
"Bad type (%s) for __init__ module in package %s" % (
|
||||
`inittype`, name)
|
||||
"Bad type (%r) for __init__ module in package %s" % (
|
||||
inittype, name)
|
||||
path = [filename]
|
||||
file = initfile
|
||||
realfilename = initfilename
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue