summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJustin Applegate <70449145+Legoclones@users.noreply.github.com>2024-12-11 12:37:59 (GMT)
committerGitHub <noreply@github.com>2024-12-11 12:37:59 (GMT)
commitce76b547f94de6b1c9c74657b4e8f150365ad76f (patch)
tree0cd674a625cd7319aa2e1bd927b85148c2949fa1 /Misc
parentd5d84c3f13fe7fe591b375c41979d362bc11957a (diff)
downloadcpython-ce76b547f94de6b1c9c74657b4e8f150365ad76f.zip
cpython-ce76b547f94de6b1c9c74657b4e8f150365ad76f.tar.gz
cpython-ce76b547f94de6b1c9c74657b4e8f150365ad76f.tar.bz2
gh-126992: Change pickle code to base 10 for load_long and load_int (GH-127042)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2024-11-20-21-20-56.gh-issue-126992.RbU0FZ.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-11-20-21-20-56.gh-issue-126992.RbU0FZ.rst b/Misc/NEWS.d/next/Library/2024-11-20-21-20-56.gh-issue-126992.RbU0FZ.rst
new file mode 100644
index 0000000..526785f
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-11-20-21-20-56.gh-issue-126992.RbU0FZ.rst
@@ -0,0 +1 @@
+Fix LONG and INT opcodes to only use base 10 for string to integer conversion in :mod:`pickle`.