diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-12-28 13:26:42 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-12-28 13:26:42 (GMT) |
commit | da9ec995f66bdb69dce7292abc4e1ca86e6a626a (patch) | |
tree | 0e32ecfe5b56b5dc0a4c1fc46eae094edf411905 /Misc | |
parent | e398da9ad0533d4bdca43aca8a7ff96cd02b7cfa (diff) | |
download | cpython-da9ec995f66bdb69dce7292abc4e1ca86e6a626a.zip cpython-da9ec995f66bdb69dce7292abc4e1ca86e6a626a.tar.gz cpython-da9ec995f66bdb69dce7292abc4e1ca86e6a626a.tar.bz2 |
Issue #10783: struct.pack() doesn't encode implicitly unicode to UTF-8
* Replace "bytes" by "bytes object" in struct error messages
* Document the API change in What's new in Python 3.2
* Fix test_wave
* Remove also ugly implicit conversions in test_struct
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -18,6 +18,9 @@ Core and Builtins Library ------- +- Issue #10783: struct.pack() doesn't encode implicitly unicode to UTF-8 + anymore. + - Issue #10730: Add SVG mime types to mimetypes module. - Issue #10768: Make the Tkinter ScrolledText widget work again. |