diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-07-29 19:23:47 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-07-29 19:23:47 (GMT) |
commit | ce071ca4e76b67060f55c6ed6fd9a7433cb66013 (patch) | |
tree | 92ad6b3e0b6c42c342f3ad1886902b6aa14107f6 /Misc | |
parent | e12c0b1767309ec1fe727e91f8d4c0cfae4a88a8 (diff) | |
download | cpython-ce071ca4e76b67060f55c6ed6fd9a7433cb66013.zip cpython-ce071ca4e76b67060f55c6ed6fd9a7433cb66013.tar.gz cpython-ce071ca4e76b67060f55c6ed6fd9a7433cb66013.tar.bz2 |
bytes should be verboten in sum() (fixes #12654)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -10,6 +10,8 @@ What's New in Python 3.3 Alpha 1? Core and Builtins ----------------- +- Forbid summing bytes in sum(). + - Verify the types of AST strings and identifiers provided by the user before compiling them. |