summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-02-22 09:46:32 (GMT)
committerGitHub <noreply@github.com>2017-02-22 09:46:32 (GMT)
commit5010a77a4da76d8d3fd861a63a7f1ce8f0e9c520 (patch)
tree4d2bc1177ae8ee62768774567684506c7a392681 /Misc
parent8fa7e22134ac9626b2188ff877f6aeecd3c9e618 (diff)
downloadcpython-5010a77a4da76d8d3fd861a63a7f1ce8f0e9c520.zip
cpython-5010a77a4da76d8d3fd861a63a7f1ce8f0e9c520.tar.gz
cpython-5010a77a4da76d8d3fd861a63a7f1ce8f0e9c520.tar.bz2
[3.5] bpo-29532: Altering a kwarg dictionary passed to functools.partial() no longer affects a partial object after creation. (#222)
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 0382337..a01d454 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,9 @@ Extension Modules
Library
-------
+- bpo-29532: Altering a kwarg dictionary passed to functools.partial()
+ no longer affects a partial object after creation.
+
- Issue #28556: Various updates to typing module: typing.Counter, typing.ChainMap,
improved ABC caching, etc. Original PRs by Jelle Zijlstra, Ivan Levkivskyi,
Manuel Krebber, and Ɓukasz Langa.