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
29889e5b
Commit
29889e5b
authored
Aug 10, 2013
by
Ezio Melotti
Browse files
Options
Browse Files
Download
Plain Diff
#18681: merge with 3.3.
parents
3f3acbd6
f2d0e053
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
Lib/importlib/__init__.py
Lib/importlib/__init__.py
+1
-1
Lib/test/test_imp.py
Lib/test/test_imp.py
+9
-0
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/importlib/__init__.py
View file @
29889e5b
...
...
@@ -115,7 +115,7 @@ def reload(module):
parent_name
=
name
.
rpartition
(
'.'
)[
0
]
if
parent_name
and
parent_name
not
in
sys
.
modules
:
msg
=
"parent {!r} not in sys.modules"
raise
ImportError
(
msg
.
format
(
parentname
),
name
=
parent_name
)
raise
ImportError
(
msg
.
format
(
parent
_
name
),
name
=
parent_name
)
return
module
.
__loader__
.
load_module
(
name
)
finally
:
try
:
...
...
Lib/test/test_imp.py
View file @
29889e5b
...
...
@@ -314,6 +314,15 @@ class ReloadTests(unittest.TestCase):
import
marshal
imp
.
reload
(
marshal
)
def
test_with_deleted_parent
(
self
):
# see #18681
from
html
import
parser
del
sys
.
modules
[
'html'
]
def
cleanup
():
del
sys
.
modules
[
'html.parser'
]
self
.
addCleanup
(
cleanup
)
with
self
.
assertRaisesRegex
(
ImportError
,
'html'
):
imp
.
reload
(
parser
)
class
PEP3147Tests
(
unittest
.
TestCase
):
"""Tests of PEP 3147."""
...
...
Misc/NEWS
View file @
29889e5b
...
...
@@ -221,6 +221,8 @@ Core and Builtins
Library
-------
- Issue #18681: Fix a NameError in importlib.reload() (noticed by Weizhao Li).
- Issue #14323: Expanded the number of digits in the coefficients for the
RGB -- YIQ conversions so that they match the FCC NTSC versions.
...
...
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