summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2012-08-06 20:34:44 (GMT)
committerBrett Cannon <brett@python.org>2012-08-06 20:34:44 (GMT)
commitcb4996afe4952e219d13bbb5a84162ab1aaa6887 (patch)
treec4d7cd79f10e23fc3c369d6d5636e0ed24182acb /Misc/NEWS
parent638de338e66b6e84a98c7bd8f6f6959575b53c51 (diff)
downloadcpython-cb4996afe4952e219d13bbb5a84162ab1aaa6887.zip
cpython-cb4996afe4952e219d13bbb5a84162ab1aaa6887.tar.gz
cpython-cb4996afe4952e219d13bbb5a84162ab1aaa6887.tar.bz2
Issue #15471: Don't use mutable object as default values for the
parameters of importlib.__import__().
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6f7b0fc..4f59002 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -77,6 +77,9 @@ Core and Builtins
Library
-------
+- Issue #15471: Do not use mutable objects as defaults for
+ importlib.__import__().
+
- Issue #15559: To avoid a problematic failure mode when passed to the bytes
constructor, objects in the ipaddress module no longer implement __index__
(they still implement __int__ as appropriate)