summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2013-03-17 22:48:16 (GMT)
committerBrett Cannon <brett@python.org>2013-03-17 22:48:16 (GMT)
commit3e2fe05e62e061032d81becb2f9ef1a8def54f63 (patch)
tree8f60f2cc6a1bf78a8a94aea7051cfb98cc826352 /Misc
parentb271727bad803ef50fdef185eeda24222fba4f25 (diff)
downloadcpython-3e2fe05e62e061032d81becb2f9ef1a8def54f63.zip
cpython-3e2fe05e62e061032d81becb2f9ef1a8def54f63.tar.gz
cpython-3e2fe05e62e061032d81becb2f9ef1a8def54f63.tar.bz2
Issue #16880: _imp.load_dynamic() is not defined on a platform that
does not support dynamic loading (e.g. Atari), so make sure that imp doesn't assume it always exists. Patch by Christian Heimes.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2cdb491..a92caf2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -193,6 +193,8 @@ Core and Builtins
Library
-------
+Issue #16880: Do not assume _imp.load_dynamic() is defined in the imp module.
+
- Issue #16389: Fixed a performance regression relative to Python 3.1 in the
caching of compiled regular expressions.