summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-06-26 10:11:28 (GMT)
committerGitHub <noreply@github.com>2024-06-26 10:11:28 (GMT)
commitf2b4f517b9a0dbe4d2ebd1e1912615ede46d7aec (patch)
tree7447aa74c63a2f3ca08fe1ee436b6e0af3ab088f /Misc/NEWS.d/next
parent84634254fef19ab31439e88ec0213acb46bd7b1f (diff)
downloadcpython-f2b4f517b9a0dbe4d2ebd1e1912615ede46d7aec.zip
cpython-f2b4f517b9a0dbe4d2ebd1e1912615ede46d7aec.tar.gz
cpython-f2b4f517b9a0dbe4d2ebd1e1912615ede46d7aec.tar.bz2
[3.13] gh-120380: fix Python implementation of `pickle.Pickler` for `bytes` and `bytearray` objects in protocol version 5. (GH-120422) (GH-120832)
gh-120380: fix Python implementation of `pickle.Pickler` for `bytes` and `bytearray` objects in protocol version 5. (GH-120422) (cherry picked from commit 7595e6743ac78ac0dd19418176f66d251668fafc) Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2024-06-12-18-23-15.gh-issue-120380.edtqjq.rst3
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.