summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-07-07 20:54:01 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-07-07 20:54:01 (GMT)
commitccabcd4bd441416c276a4755a601fd3fc290e32a (patch)
tree50bdd991d26052c512eeb216e5e4c1d04ae2f8e5 /Misc
parenta9800a8d5b55d43df36d26f6e15709781c0d00aa (diff)
downloadcpython-ccabcd4bd441416c276a4755a601fd3fc290e32a.zip
cpython-ccabcd4bd441416c276a4755a601fd3fc290e32a.tar.gz
cpython-ccabcd4bd441416c276a4755a601fd3fc290e32a.tar.bz2
make struct sequences subclass tuple; kill lots of code
This fixes #8413.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0022a4e..9eede94 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 3.2 Alpha 1?
Core and Builtins
-----------------
+- Issue #8413: structsequence now subclasses tuple.
+
- Issue #8271: during the decoding of an invalid UTF-8 byte sequence, only the
start byte and the continuation byte(s) are now considered invalid, instead
of the number of bytes specified by the start byte.