[issue19754] pickletools.optimize doesn't reframe correctly

2013-12-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9feada79a411 by Alexandre Vassalotti in branch 'default': Issue #19754: Fix typo. http://hg.python.org/cpython/rev/9feada79a411 -- ___ Python tracker _

[issue19754] pickletools.optimize doesn't reframe correctly

2013-12-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset bb71baa28f1b by Alexandre Vassalotti in branch 'default': Issue #19754: Make pickletools.optimize respect the frame size target. http://hg.python.org/cpython/rev/bb71baa28f1b -- nosy: +python-dev ___ Pyth

[issue19754] pickletools.optimize doesn't reframe correctly

2013-12-01 Thread Alexandre Vassalotti
Alexandre Vassalotti added the comment: Now, pickletools.optimize doesn't do anything on protocol 4. :) -- assignee: -> alexandre.vassalotti resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue19754] pickletools.optimize doesn't reframe correctly

2013-11-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > on the other hand if you keep the whole pickle in memory for optimize() > perhaps it's not a problem keeping it in memory for load() :-) This is not always true. You run optimize() on one computer or environment and load() on other. -- nosy: +serh

[issue19754] pickletools.optimize doesn't reframe correctly

2013-11-24 Thread Antoine Pitrou
New submission from Antoine Pitrou: pickletools.optimize() can output arbitrarily large frames (much larger than then 64 KB heuristic). This may be annoying for memory use when pickling -- on the other hand if you keep the whole pickle in memory for optimize() perhaps it's not a problem keepin