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
6d3165a5
Commit
6d3165a5
authored
Nov 20, 1999
by
Greg Stein
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
only put __path__ into package modules.
parent
63faa015
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
Lib/imputil.py
Lib/imputil.py
+1
-2
No files found.
Lib/imputil.py
View file @
6d3165a5
...
...
@@ -436,7 +436,7 @@ def _fs_import(dir, modname):
pathname
=
_os_path_join
(
dir
,
modname
)
if
_os_path_isdir
(
pathname
):
values
=
{
'__pkgdir__'
:
pathname
}
values
=
{
'__pkgdir__'
:
pathname
,
'__path__'
:
[
pathname
]
}
ispkg
=
1
pathname
=
_os_path_join
(
pathname
,
'__init__'
)
else
:
...
...
@@ -609,7 +609,6 @@ class SysPathImporter(Importer):
for
dir
in
sys
.
path
:
result
=
_fs_import
(
dir
,
modname
)
if
result
:
result
[
2
][
'__path__'
]
=
[
dir
]
# backwards compat
return
result
# not found
...
...
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