[issue9410] Add Unladden Swallow's optimizations to Python 3's pickle.

2010-07-30 Thread Skip Montanaro
Skip Montanaro s...@pobox.com added the comment: Look around the issues. I'm pretty sure I worked on the unbounded size issue at one point. Skip -- nosy: +skip.montanaro ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9410

[issue9410] Add Unladden Swallow's optimizations to Python 3's pickle.

2010-07-29 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Le jeudi 29 juillet 2010 à 06:26 +, Alexandre Vassalotti a écrit : New submission from Alexandre Vassalotti alexan...@peadrop.com: This is a big patch. Please review at http://codereview.appspot.com/1694050/show This patch adds the

[issue9410] Add Unladden Swallow's optimizations to Python 3's pickle.

2010-07-29 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: For those not familiar with Unladen Swallow, can you describe what the most interesting optimizations are? Maybe there is an Unladen Swallow document you can point to. Would any of these optimizations apply to python

[issue9410] Add Unladden Swallow's optimizations to Python 3's pickle.

2010-07-29 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: I'm working on #3873 to add a read buffer (fixed size, 4096 bytes) to the unpickler. It's 6 to 8 times faster with the read buffer: but this patch is mainly to avoid the overhead introduced by the new I/O library (in Python2,