summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-07-11 19:27:06 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-07-11 19:27:06 (GMT)
commit16d037653d50a035f106636715095840e4fabe70 (patch)
treecc6659650dce5feafd22660dfc3a69a8699ff331 /Misc
parentdedbbe6b3bfbf1fda4e333ec80507576c1725544 (diff)
downloadcpython-16d037653d50a035f106636715095840e4fabe70.zip
cpython-16d037653d50a035f106636715095840e4fabe70.tar.gz
cpython-16d037653d50a035f106636715095840e4fabe70.tar.bz2
Merged revisions 82821 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82821 | mark.dickinson | 2010-07-11 19:53:06 +0100 (Sun, 11 Jul 2010) | 3 lines Issue #9137: Fix issue in MutableMapping.update, which incorrectly treated keyword arguments called 'self' or 'other' specially. ........
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 7911c4f..601943f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -78,6 +78,9 @@ C-API
Library
-------
+- Issue #9137: Fix issue in MutableMapping.update, which incorrectly
+ treated keyword arguments called 'self' or 'other' specially.
+
- Issue #7646: The fnmatch pattern cache no longer grows without bound.
- Issue #9136: Fix 'dictionary changed size during iteration'