summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2015-09-05 11:05:05 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2015-09-05 11:05:05 (GMT)
commit9d3c61c86a20678d604c96a68bbf4a966877f0b9 (patch)
tree77e38b72e9258da435606d28543cc0362787eeff /Misc/NEWS
parent1b6691053701e92490c6b68171d6d6a645f8e708 (diff)
downloadcpython-9d3c61c86a20678d604c96a68bbf4a966877f0b9.zip
cpython-9d3c61c86a20678d604c96a68bbf4a966877f0b9.tar.gz
cpython-9d3c61c86a20678d604c96a68bbf4a966877f0b9.tar.bz2
Close #24748: Restore imp.load_dynamic compatibility
To resolve a compatibility problem found with py2exe and pywin32, imp.load_dynamic() once again ignores previously loaded modules to support Python modules replacing themselves with extension modules. Patch by Petr Viktorin.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 288fa62..7ea2387 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,11 @@ Core and Builtins
Library
-------
+- Issue #24748: To resolve a compatibility problem found with py2exe and
+ pywin32, imp.load_dynamic() once again ignores previously loaded modules
+ to support Python modules replacing themselves with extension modules.
+ Patch by Petr Viktorin.
+
- Issue #24635: Fixed a bug in typing.py where isinstance([], typing.Iterable)
would return True once, then False on subsequent calls.