[issue32032] Module-level pickle tests test only default implementation

2017-11-15 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue32032] Module-level pickle tests test only default implementation

2017-11-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset eb38367f20b05f2ad04a4833bceb369b5e78b1a3 by Serhiy Storchaka (Miss Islington (bot)) in branch '3.6': bpo-32032: Test both implementations of module-level pickle API. (GH-4401) (#4403) https://github.com/python/cpython/commit/eb38367f20b05f2ad0

[issue32032] Module-level pickle tests test only default implementation

2017-11-15 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +4352 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue32032] Module-level pickle tests test only default implementation

2017-11-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 6545256df93ba54f811206107274cfa5a6d76b86 by Serhiy Storchaka in branch 'master': bpo-32032: Test both implementations of module-level pickle API. (#4401) https://github.com/python/cpython/commit/6545256df93ba54f811206107274cfa5a6d76b86 --

[issue32032] Module-level pickle tests test only default implementation

2017-11-15 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +4350 stage: needs patch -> patch review ___ Python tracker ___ ___ P

[issue32032] Module-level pickle tests test only default implementation

2017-11-15 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : In Python 2 tests for module-level API test both implementations, pickle and cPickle. In Python 3 they test only the default implementation. If _pickle is available, the Python implementation of module-level functions is not tested. -- assignee: s