summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDaniel Stutzbach <daniel@stutzbachenterprises.com>2010-08-24 21:00:32 (GMT)
committerDaniel Stutzbach <daniel@stutzbachenterprises.com>2010-08-24 21:00:32 (GMT)
commite21624fb4558753ddc0b3fe2379d74d1f45f9d26 (patch)
tree5c3260285646444570caa840cadf563aaef649c3 /Misc
parented2ce469f3bf4a0f6fb20761659ce6f5f2f3b399 (diff)
downloadcpython-e21624fb4558753ddc0b3fe2379d74d1f45f9d26.zip
cpython-e21624fb4558753ddc0b3fe2379d74d1f45f9d26.tar.gz
cpython-e21624fb4558753ddc0b3fe2379d74d1f45f9d26.tar.bz2
Merged revisions 84301 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84301 | daniel.stutzbach | 2010-08-24 15:49:57 -0500 (Tue, 24 Aug 2010) | 1 line Issue 8750: Fixed MutableSet's methods to correctly handle reflexive operations, namely x -= x and x ^= x ........
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 4c2ebe4..3344d27 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -95,6 +95,9 @@ C-API
Library
-------
+- Issue #8750: Fixed MutableSet's methods to correctly handle
+ reflexive operations, namely x -= x and x ^= x.
+
- Issue #9129: smtpd.py is vulnerable to DoS attacks deriving from missing
error handling when accepting a new connection.