diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-07-07 20:54:01 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-07-07 20:54:01 (GMT) |
commit | ccabcd4bd441416c276a4755a601fd3fc290e32a (patch) | |
tree | 50bdd991d26052c512eeb216e5e4c1d04ae2f8e5 /Misc | |
parent | a9800a8d5b55d43df36d26f6e15709781c0d00aa (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. |