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
61d168a5
Commit
61d168a5
authored
May 04, 2006
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #1481530: allow "from os.path import ..." with imputil
parent
14f3da75
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
Lib/imputil.py
Lib/imputil.py
+5
-2
No files found.
Lib/imputil.py
View file @
61d168a5
...
...
@@ -131,9 +131,12 @@ class ImportManager:
if
importer
:
return
importer
.
_finish_import
(
top_module
,
parts
[
1
:],
fromlist
)
# Grrr, some people "import os.path"
# Grrr, some people "import os.path"
or do "from os.path import ..."
if
len
(
parts
)
==
2
and
hasattr
(
top_module
,
parts
[
1
]):
return
top_module
if
fromlist
:
return
getattr
(
top_module
,
parts
[
1
])
else
:
return
top_module
# If the importer does not exist, then we have to bail. A missing
# importer means that something else imported the module, and we have
...
...
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