This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Improve pickle tests for recursive data
Type: enhancement Stage: patch review
Components: Tests Versions: Python 3.10, Python 3.9, Python 3.8
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: alexandre.vassalotti, miss-islington, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2021-01-02 10:47 by serhiy.storchaka, last changed 2022-04-11 14:59 by admin.

Pull Requests
URL Status Linked Edit
PR 24060 merged serhiy.storchaka, 2021-01-02 10:59
PR 24062 merged miss-islington, 2021-01-02 17:33
PR 24063 merged miss-islington, 2021-01-02 17:33
Messages (4)
msg384220 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2021-01-02 10:47
The proposed PR extends tests for pickling recursive structures. The code is now more generic and covers more corner cases (found during work on issue36694).
msg384230 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2021-01-02 17:32
New changeset a25011be8c6f62cb3333903befe6295d57f0bd30 by Serhiy Storchaka in branch 'master':
bpo-42809: Improve pickle tests for recursive data. (GH-24060)
https://github.com/python/cpython/commit/a25011be8c6f62cb3333903befe6295d57f0bd30
msg384233 - (view) Author: miss-islington (miss-islington) Date: 2021-01-02 17:50
New changeset 2e8b1c9e9b2d2e011bf35f77cd611843bac7f3dd by Miss Islington (bot) in branch '3.8':
bpo-42809: Improve pickle tests for recursive data. (GH-24060)
https://github.com/python/cpython/commit/2e8b1c9e9b2d2e011bf35f77cd611843bac7f3dd
msg384234 - (view) Author: miss-islington (miss-islington) Date: 2021-01-02 17:53
New changeset 39a7578186d2f5eaa112a5854c46f84eae401522 by Miss Islington (bot) in branch '3.9':
bpo-42809: Improve pickle tests for recursive data. (GH-24060)
https://github.com/python/cpython/commit/39a7578186d2f5eaa112a5854c46f84eae401522
History
Date User Action Args
2022-04-11 14:59:39adminsetgithub: 86975
2021-01-02 17:53:55miss-islingtonsetmessages: + msg384234
2021-01-02 17:50:45miss-islingtonsetmessages: + msg384233
2021-01-02 17:33:56miss-islingtonsetpull_requests: + pull_request22897
2021-01-02 17:33:46miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request22896
2021-01-02 17:32:56serhiy.storchakasetmessages: + msg384230
2021-01-02 10:59:37serhiy.storchakasetkeywords: + patch
stage: patch review
pull_requests: + pull_request22894
2021-01-02 10:47:46serhiy.storchakasetversions: + Python 3.8, Python 3.9
2021-01-02 10:47:08serhiy.storchakacreate