summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-02-14 17:17:58 (GMT)
committerGitHub <noreply@github.com>2024-02-14 17:17:58 (GMT)
commitd25894332aa363388ccc967980635a7fa650bbee (patch)
tree1bd11660fe89f033d1b7f63634014211a80c9097 /Misc
parent13af281a53bcf522f933afbbe6af4ed2da823943 (diff)
downloadcpython-d25894332aa363388ccc967980635a7fa650bbee.zip
cpython-d25894332aa363388ccc967980635a7fa650bbee.tar.gz
cpython-d25894332aa363388ccc967980635a7fa650bbee.tar.bz2
[3.12] gh-115243: Fix crash in deque.index() when the deque is concurrently modified (GH-115247) (GH-115465)
(cherry picked from commit 671360161f0b7a5ff4c1d062e570962e851b4bde) Co-authored-by: kcatss <kcats9731@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Security/2024-02-12-00-33-01.gh-issue-115243.e1oGX8.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Security/2024-02-12-00-33-01.gh-issue-115243.e1oGX8.rst b/Misc/NEWS.d/next/Security/2024-02-12-00-33-01.gh-issue-115243.e1oGX8.rst
new file mode 100644
index 0000000..ae0e910
--- /dev/null
+++ b/Misc/NEWS.d/next/Security/2024-02-12-00-33-01.gh-issue-115243.e1oGX8.rst
@@ -0,0 +1 @@
+Fix possible crashes in :meth:`collections.deque.index` when the deque is concurrently modified.