[issue19881] Fix bigmem pickle tests

2013-12-05 Thread Alexandre Vassalotti
Changes by Alexandre Vassalotti : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue19881] Fix bigmem pickle tests

2013-12-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2612ea573ff7 by Alexandre Vassalotti in branch 'default': Issue #19881: Fix bad pickling of large bytes in cpickle. http://hg.python.org/cpython/rev/2612ea573ff7 -- nosy: +python-dev ___ Python tracker <

[issue19881] Fix bigmem pickle tests

2013-12-05 Thread Alexandre Vassalotti
Changes by Alexandre Vassalotti : Added file: http://bugs.python.org/file33001/fix_bigmem_pickle_3.patch ___ Python tracker ___ ___ Python-bug

[issue19881] Fix bigmem pickle tests

2013-12-05 Thread Alexandre Vassalotti
Changes by Alexandre Vassalotti : Added file: http://bugs.python.org/file32982/fix_bigmem_pickle_2.patch ___ Python tracker ___ ___ Python-bug

[issue19881] Fix bigmem pickle tests

2013-12-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Patch about bigmem limits was moved to issue19886. -- ___ Python tracker ___ ___ Python-bugs-list

[issue19881] Fix bigmem pickle tests

2013-12-04 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Removed file: http://bugs.python.org/file32972/pickle_bigmem_limits.patch ___ Python tracker ___ ___ Python-bugs

[issue19881] Fix bigmem pickle tests

2013-12-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: (we did have a bigmem buildbot but the bigmem tests tended to crash it, as some memory estimates are widely inaccurate) -- ___ Python tracker _

[issue19881] Fix bigmem pickle tests

2013-12-04 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Added file: http://bugs.python.org/file32972/pickle_bigmem_limits.patch ___ Python tracker ___ ___ Python-bugs-l

[issue19881] Fix bigmem pickle tests

2013-12-04 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Removed file: http://bugs.python.org/file32969/pickle_bigmem_limits.patch ___ Python tracker ___ ___ Python-bugs

[issue19881] Fix bigmem pickle tests

2013-12-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch with new bigmem limits. Currently bigmem tests consumes much more memory than they declare. This can cause memory swapping and too long time of test's running. -- Added file: http://bugs.python.org/file32969/pickle_bigmem_limits.patch

[issue19881] Fix bigmem pickle tests

2013-12-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Alexandre, if you have enough memory, could you please check that memory requirements for bigmem tests are correct? -- ___ Python tracker ___

[issue19881] Fix bigmem pickle tests

2013-12-03 Thread Alexandre Vassalotti
New submission from Alexandre Vassalotti: The bigmem tests for pickle are currently failing for protocol 4. The tests are broken because of an assumption rendered invalid by the frame header. Fixing the tests caught a legitimate bug in the save_bytes function of cpickle. -- assignee: a