diff options
author | Antoine Pitrou <antoine@python.org> | 2020-02-23 22:33:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-23 22:33:53 (GMT) |
commit | 9f37872e307734666a7169f7be6e3370d3068282 (patch) | |
tree | 47f754a231cd7b028f70577207296847381543b0 /Misc/NEWS.d | |
parent | b76518d43fb82ed9e5d27025d18c90a23d525c90 (diff) | |
download | cpython-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.rst | 2 |
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. |