diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-02-07 22:12:46 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-02-07 22:12:46 (GMT) |
commit | bbbac2ec34e99c24d7bc0eedbcc138c5f4551d48 (patch) | |
tree | d78b2fead0311d37b6f76d0a3466fd78196c8c31 /Misc | |
parent | 2efdc90b0f49866d857a5b3dc21b7c791f7a0aeb (diff) | |
download | cpython-bbbac2ec34e99c24d7bc0eedbcc138c5f4551d48.zip cpython-bbbac2ec34e99c24d7bc0eedbcc138c5f4551d48.tar.gz cpython-bbbac2ec34e99c24d7bc0eedbcc138c5f4551d48.tar.bz2 |
Issue #17137: When an Unicode string is resized, the internal wide character
string (wstr) format is now cleared.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 3.3.1? Core and Builtins ----------------- +- Issue #17137: When an Unicode string is resized, the internal wide character + string (wstr) format is now cleared. + - Issue #17043: The unicode-internal decoder no longer read past the end of input buffer. |