summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorAntoine Pitrou <antoine@python.org>2020-02-23 22:33:53 (GMT)
committerGitHub <noreply@github.com>2020-02-23 22:33:53 (GMT)
commit9f37872e307734666a7169f7be6e3370d3068282 (patch)
tree47f754a231cd7b028f70577207296847381543b0 /Misc/NEWS.d
parentb76518d43fb82ed9e5d27025d18c90a23d525c90 (diff)
downloadcpython-9f37872e307734666a7169f7be6e3370d3068282.zip
cpython-9f37872e307734666a7169f7be6e3370d3068282.tar.gz
cpython-9f37872e307734666a7169f7be6e3370d3068282.tar.bz2
bpo-39681: Fix C pickle regression with minimal file-like objects (#18592)
Fix a regression where the C pickle module wouldn't allow unpickling from a file-like object that doesn't expose a readinto() method.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2020-02-21-13-58-40.bpo-39681.zN8hf0.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-02-21-13-58-40.bpo-39681.zN8hf0.rst b/Misc/NEWS.d/next/Library/2020-02-21-13-58-40.bpo-39681.zN8hf0.rst
new file mode 100644
index 0000000..c10e2fd
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-02-21-13-58-40.bpo-39681.zN8hf0.rst
@@ -0,0 +1,2 @@
+Fix a regression where the C pickle module wouldn't allow unpickling from a
+file-like object that doesn't expose a readinto() method.