diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-06-13 11:58:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-13 11:58:51 (GMT) |
commit | 63ab4ba07b492448844940c347787ba30735b7f2 (patch) | |
tree | e76e84e6bd8355398833353bf9afdf6f2a1b6da8 /Misc | |
parent | 6f75c873752a16a7ad8f35855b1e29f59d048e84 (diff) | |
download | cpython-63ab4ba07b492448844940c347787ba30735b7f2.zip cpython-63ab4ba07b492448844940c347787ba30735b7f2.tar.gz cpython-63ab4ba07b492448844940c347787ba30735b7f2.tar.bz2 |
bpo-37210: Fix pure Python pickle when _pickle is unavailable (GH-14016)
Allow pure Python implementation of pickle to work
even when the C _pickle module is unavailable.
Fix test_pickle when _pickle is missing: declare PyPicklerHookTests
outside "if has_c_implementation:" block.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-06-12-16-10-50.bpo-37210.r4yMg6.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-06-12-16-10-50.bpo-37210.r4yMg6.rst b/Misc/NEWS.d/next/Library/2019-06-12-16-10-50.bpo-37210.r4yMg6.rst new file mode 100644 index 0000000..58fc66b --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-06-12-16-10-50.bpo-37210.r4yMg6.rst @@ -0,0 +1 @@ +Allow pure Python implementation of :mod:`pickle` to work even when the C :mod:`_pickle` module is unavailable. |