summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2013-10-25 17:46:15 (GMT)
committerBrett Cannon <brett@python.org>2013-10-25 17:46:15 (GMT)
commit6fd25c39c47fa8a0ceaf5b8b8189da39d2007400 (patch)
tree0617d11331e1f80feff24f4d7eef7d43342ad440 /Misc
parenta4f6b006e1e9a6e9dd82a95714e55f18b008278c (diff)
downloadcpython-6fd25c39c47fa8a0ceaf5b8b8189da39d2007400.zip
cpython-6fd25c39c47fa8a0ceaf5b8b8189da39d2007400.tar.gz
cpython-6fd25c39c47fa8a0ceaf5b8b8189da39d2007400.tar.bz2
Issue #19392: Document that imp.reload() now relies on __loader__
being defined on top of __name__.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fbe5924..80464f7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -531,6 +531,9 @@ Tests
Documentation
-------------
+- Issue #19392: Document that `imp.reload()` now also requires `__loader__` to
+ be set on the module being reloaded.
+
- Issue #18758: Fixed and improved cross-references.
- Issue #18743: Fix references to non-existant "StringIO" module.