diff options
author | Bénédikt Tran <10796600+picnixz@users.noreply.github.com> | 2024-06-21 12:22:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-21 12:22:38 (GMT) |
commit | 7595e6743ac78ac0dd19418176f66d251668fafc (patch) | |
tree | 80c90888e311b0cd403fe850132c6050c69ee31d /Misc/NEWS.d | |
parent | 83d3d7aace32b8536f552f78dd29610344f13160 (diff) | |
download | cpython-7595e6743ac78ac0dd19418176f66d251668fafc.zip cpython-7595e6743ac78ac0dd19418176f66d251668fafc.tar.gz cpython-7595e6743ac78ac0dd19418176f66d251668fafc.tar.bz2 |
gh-120380: fix Python implementation of `pickle.Pickler` for `bytes` and `bytearray` objects in protocol version 5. (GH-120422)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2024-06-12-18-23-15.gh-issue-120380.edtqjq.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2024-06-12-18-23-15.gh-issue-120380.edtqjq.rst b/Misc/NEWS.d/next/Core and Builtins/2024-06-12-18-23-15.gh-issue-120380.edtqjq.rst new file mode 100644 index 0000000..c682a0b --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2024-06-12-18-23-15.gh-issue-120380.edtqjq.rst @@ -0,0 +1,3 @@ +Fix Python implementation of :class:`pickle.Pickler` for :class:`bytes` and +:class:`bytearray` objects when using protocol version 5. Patch by Bénédikt +Tran. |