diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-08 19:20:17 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-01-08 19:20:17 (GMT) |
commit | 8015725d4f828ed877d90e17c3e1b7203f6f24a6 (patch) | |
tree | e75f291e1f4b4aee23eef323770eab6e7b0416b1 /Misc | |
parent | ce8e33a095030e7af94f58f9da196b240bdf0476 (diff) | |
download | cpython-8015725d4f828ed877d90e17c3e1b7203f6f24a6.zip cpython-8015725d4f828ed877d90e17c3e1b7203f6f24a6.tar.gz cpython-8015725d4f828ed877d90e17c3e1b7203f6f24a6.tar.bz2 |
Issue #7092: Remove py3k warning when importing cPickle. 2to3 handles
renaming of `cPickle` to `pickle`. The warning was annoying since there's
no alternative to cPickle if you care about performance. Patch by Florent
Xicluna.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -65,6 +65,11 @@ Core and Builtins Library ------- +- Issue #7092: Remove py3k warning when importing cPickle. 2to3 handles + renaming of `cPickle` to `pickle`. The warning was annoying since there's + no alternative to cPickle if you care about performance. Patch by Florent + Xicluna. + - Issue #7455: Fix possible crash in cPickle on invalid input. Patch by Victor Stinner. |