Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
4a2e1a0d
Commit
4a2e1a0d
authored
Feb 08, 2012
by
Brett Cannon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Undo a bad mq management thingy.
parent
97771096
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
44 deletions
+0
-44
Lib/importlib/_bootstrap.py
Lib/importlib/_bootstrap.py
+0
-44
No files found.
Lib/importlib/_bootstrap.py
View file @
4a2e1a0d
...
...
@@ -1038,47 +1038,3 @@ def _setup(sys_module, imp_module):
raise
ImportError
(
'importlib requires posix or nt'
)
setattr
(
self_module
,
'_os'
,
os_module
)
setattr
(
self_module
,
'path_sep'
,
path_sep
)
def
_setup
(
sys_module
,
imp_module
):
"""Setup importlib by importing needed built-in modules and injecting them
into the global namespace.
As sys is needed for sys.modules access and imp is needed to load built-in
modules those two modules must be explicitly passed in.
"""
global
imp
,
sys
imp
=
imp_module
sys
=
sys_module
for
module
in
(
imp
,
sys
):
if
not
hasattr
(
module
,
'__loader__'
):
module
.
__loader__
=
BuiltinImporter
self_module
=
sys
.
modules
[
__name__
]
for
builtin_name
in
(
'_io'
,
'_warnings'
,
'builtins'
,
'marshal'
):
if
builtin_name
not
in
sys
.
modules
:
builtin_module
=
BuiltinImporter
.
load_module
(
builtin_name
)
else
:
builtin_module
=
sys
.
modules
[
builtin_name
]
setattr
(
self_module
,
builtin_name
,
builtin_module
)
for
builtin_os
,
path_sep
in
[(
'posix'
,
'/'
),
(
'nt'
,
'
\
\
'
),
(
'os2'
,
'
\
\
'
)]:
if
builtin_os
in
sys
.
modules
:
os_module
=
sys
.
modules
[
builtin_os
]
break
else
:
try
:
os_module
=
BuiltinImporter
.
load_module
(
builtin_os
)
# TODO: rip out os2 code after 3.3 is released as per PEP 11
if
builtin_os
==
'os2'
and
'EMX GCC'
in
sys
.
version
:
path_sep
=
'/'
break
except
ImportError
:
continue
else
:
raise
ImportError
(
'importlib requires posix or nt'
)
setattr
(
self_module
,
'_os'
,
os_module
)
setattr
(
self_module
,
'path_sep'
,
path_sep
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment