summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2015-05-17 21:45:58 (GMT)
committerRaymond Hettinger <python@rcn.com>2015-05-17 21:45:58 (GMT)
commit610a51f364f6cb5ffb5167d9bf4dcecc1815107c (patch)
tree1544fadc8ed997411f3346015921e1a48a467e2f /Misc
parent6558190e52748428b2db1420bf029b0745e2743a (diff)
downloadcpython-610a51f364f6cb5ffb5167d9bf4dcecc1815107c.zip
cpython-610a51f364f6cb5ffb5167d9bf4dcecc1815107c.tar.gz
cpython-610a51f364f6cb5ffb5167d9bf4dcecc1815107c.tar.bz2
Issue #23757: Only call the concrete list API for exact lists.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e9b1461..2599b82 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
- Issue #20274: Remove ignored and erroneous "kwargs" parameters from three
METH_VARARGS methods on _sqlite.Connection.
+- Issue #23757: PySequence_Tuple() incorrectly called the concrete list API
+ when the data was a list subclass.
+
- Issue #24096: Make warnings.warn_explicit more robust against mutation of the
warnings.filters list.