Isuse #17720: Fix APPENDS handling in the Python implementation of Unpickler

to correctly process the opcode when it is used on non-list objects.
This commit is contained in:
Alexandre Vassalotti 2013-04-20 13:19:46 -07:00
parent bdf940d3bd
commit 1f7492c28a
3 changed files with 65 additions and 6 deletions

View file

@ -42,6 +42,9 @@ Library
- Issue #17707: multiprocessing.Queue's get() method does not block for short
timeouts.
- Isuse #17720: Fix the Python implementation of pickle.Unpickler to correctly
process the APPENDS opcode when it is used on non-list objects.
- Issue #17012: shutil.which() no longer fallbacks to the PATH environment
variable if empty path argument is specified. Patch by Serhiy Storchaka.