summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-08-24 21:03:37 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-08-24 21:03:37 (GMT)
commitf52c2c63cd7b42f1c7b41919c8b50232d13acbd7 (patch)
treec9fa640e02cc22d3dbd041477e8ca6a9aecdc9a1
parent31da5b2f69d408ac2448eb04ee2892b8aa3aac79 (diff)
downloadcpython-f52c2c63cd7b42f1c7b41919c8b50232d13acbd7.zip
cpython-f52c2c63cd7b42f1c7b41919c8b50232d13acbd7.tar.gz
cpython-f52c2c63cd7b42f1c7b41919c8b50232d13acbd7.tar.bz2
further clarify
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 304977b..f7c8cc0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -126,8 +126,8 @@ Extensions
Library
-------
-- Issue #8750: Fixed MutableSet's methods to correctly handle
- reflexive operations, namely x -= x and x ^= x.
+- Issue #8750: Fixed MutableSet's methods to correctly handle reflexive
+ operations on its self, 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.