summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-09-11 16:02:03 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-09-11 16:02:03 (GMT)
commit568867a6f20c5944c0c0aba69603a4d8ff62dae6 (patch)
tree266fff4890746e7a8fd262bbdd3205bd61569853 /Misc
parente861598dcbe63bca1f71188a8ddbcbe2e100332f (diff)
downloadcpython-568867a6f20c5944c0c0aba69603a4d8ff62dae6.zip
cpython-568867a6f20c5944c0c0aba69603a4d8ff62dae6.tar.gz
cpython-568867a6f20c5944c0c0aba69603a4d8ff62dae6.tar.bz2
check for NULL tp_as_mapping in PySequence_(Get/Set/Del)Slice #9834
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ca64883..225531b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -108,6 +108,13 @@ Library
guaranteed to exist in all Python implementations and the names of hash
algorithms available in the current process.
+C-API
+-----
+
+- Issue #9834: Don't segfault in PySequence_GetSlice, PySequence_SetSlice, or
+ PySequence_DelSlice when the object doesn't have any mapping operations
+ defined.
+
Tools/Demos
-----------