diff options
author | Erlend E. Aasland <erlend.aasland@protonmail.com> | 2023-06-09 17:09:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-09 17:09:53 (GMT) |
commit | 89aac6f6b7b3af046ec137121c90732289e79efc (patch) | |
tree | 8b91a249088873894e537d12bbf658e4029a66d3 /Misc/NEWS.d/next | |
parent | 6c832ddcf28187f86100c790afb16a0223d945d0 (diff) | |
download | cpython-89aac6f6b7b3af046ec137121c90732289e79efc.zip cpython-89aac6f6b7b3af046ec137121c90732289e79efc.tar.gz cpython-89aac6f6b7b3af046ec137121c90732289e79efc.tar.bz2 |
gh-105375: Improve _pickle error handling (#105475)
Error handling was deferred in some cases, which could potentially lead
to exceptions being overwritten.
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-06-08-08-58-36.gh-issue-105375.bTcqS9.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-06-08-08-58-36.gh-issue-105375.bTcqS9.rst b/Misc/NEWS.d/next/Library/2023-06-08-08-58-36.gh-issue-105375.bTcqS9.rst new file mode 100644 index 0000000..3030477 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-06-08-08-58-36.gh-issue-105375.bTcqS9.rst @@ -0,0 +1 @@ +Fix bugs in :mod:`pickle` where exceptions could be overwritten. |