commit | 1f577ce363121d590b51abf5c41d1bcf3d751436 | [log] [tgz] |
---|---|---|
author | Hai Shi <shihai1992@gmail.com> | Mon Mar 02 14:28:44 2020 +0800 |
committer | GitHub <noreply@github.com> | Mon Mar 02 08:28:44 2020 +0200 |
tree | c57af903fec028f0a554c1ef0067315b3427202c | |
parent | 114081f8adafa16283df30c456716a1bef4758d0 [diff] |
bpo-39378: partial of PickleState struct should be traversed. (GH-18046)
diff --git a/Modules/_pickle.c b/Modules/_pickle.c index a750351..bcbd3c0 100644 --- a/Modules/_pickle.c +++ b/Modules/_pickle.c
@@ -7965,6 +7965,7 @@ Py_VISIT(st->import_mapping_3to2); Py_VISIT(st->codecs_encode); Py_VISIT(st->getattr); + Py_VISIT(st->partial); return 0; }