summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-06-13 11:58:51 (GMT)
committerGitHub <noreply@github.com>2019-06-13 11:58:51 (GMT)
commit63ab4ba07b492448844940c347787ba30735b7f2 (patch)
treee76e84e6bd8355398833353bf9afdf6f2a1b6da8 /Misc
parent6f75c873752a16a7ad8f35855b1e29f59d048e84 (diff)
downloadcpython-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.rst1
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.