summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-07-13 13:09:27 (GMT)
committerGitHub <noreply@github.com>2020-07-13 13:09:27 (GMT)
commit57c984fab69b862563899d2c11da7d27201f4152 (patch)
treef5b538659588acbdb02503e62190142ff036cb99 /Misc/NEWS.d
parenta77b1f6b5bb3b76cb913e62ad68f5fd803d515bd (diff)
downloadcpython-57c984fab69b862563899d2c11da7d27201f4152.zip
cpython-57c984fab69b862563899d2c11da7d27201f4152.tar.gz
cpython-57c984fab69b862563899d2c11da7d27201f4152.tar.bz2
bpo-41288: Fix a crash in unpickling invalid NEWOBJ_EX. (GH-21458)
Automerge-Triggered-By: @tiran (cherry picked from commit 4f309abf55f0e6f8950ac13d6ec83c22b8d47bf8) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2020-07-13-15-06-35.bpo-41288.8mn5P-.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-07-13-15-06-35.bpo-41288.8mn5P-.rst b/Misc/NEWS.d/next/Library/2020-07-13-15-06-35.bpo-41288.8mn5P-.rst
new file mode 100644
index 0000000..3c3adba
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-07-13-15-06-35.bpo-41288.8mn5P-.rst
@@ -0,0 +1,2 @@
+Unpickling invalid NEWOBJ_EX opcode with the C implementation raises now
+UnpicklingError instead of crashing.