[issue22777] Test pickling with all protocols

2014-12-16 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue22777] Test pickling with all protocols

2014-12-15 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka resolution: -> fixed stage: patch review -> resolved ___ Python tracker ___ _

[issue22777] Test pickling with all protocols

2014-12-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9927781e457f by Serhiy Storchaka in branch '2.7': Issue #22777: Test pickling with all protocols. https://hg.python.org/cpython/rev/9927781e457f New changeset 04c9fffde184 by Serhiy Storchaka in branch '3.4': Issue #22777: Test pickling with all pro

[issue22777] Test pickling with all protocols

2014-11-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Fixed two bugs found by Antoine. Thank you Antoine. Berker suggest to use the subTest() context manager inside loops. I thought about this, but this will increase blocks indentations on yet 4 spaces, and some code already is too indented. On other hand this

[issue22777] Test pickling with all protocols

2014-10-31 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Some pickling tests use only default protocol. Other tests use only lower protocols (0, 1, and may be 2). Proposed match makes all pickling tests using all existing protocols from 0 to HIGHEST_PROTOCOL inclusive. Also fixed some minor bugs. -- com