diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-03-03 01:35:32 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-03-03 01:35:32 (GMT) |
commit | 4a90ef03637fdc1bc63ee9be82fbf22cbaa68662 (patch) | |
tree | f6424020b09897e21e82740669a5ea1d2583e9da /Misc | |
parent | 679e9d36f78de3ac18abaaddbcf4f73fcef55b7e (diff) | |
download | cpython-4a90ef03637fdc1bc63ee9be82fbf22cbaa68662.zip cpython-4a90ef03637fdc1bc63ee9be82fbf22cbaa68662.tar.gz cpython-4a90ef03637fdc1bc63ee9be82fbf22cbaa68662.tar.bz2 |
Issue #14177: marshal.loads() now raises TypeError when given an unicode string.
Patch by Guilherme Gonçalves.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -341,6 +341,7 @@ Johannes Gijsbers Michael Gilfix Christoph Gohlke Tim Golden +Guilherme Gonçalves Chris Gonnerman David Goodger Hans de Graaff @@ -130,6 +130,9 @@ Core and Builtins Library ------- +- Issue #14177: marshal.loads() now raises TypeError when given an unicode + string. Patch by Guilherme Gonçalves. + - Issue #14159: Fix the len() of weak containers (WeakSet, WeakKeyDictionary, WeakValueDictionary) to return a better approximation when some objects are dead or dying. Moreover, the implementation is now O(1) rather than |