diff options
author | Raymond Hettinger <python@rcn.com> | 2015-05-17 21:45:58 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2015-05-17 21:45:58 (GMT) |
commit | 610a51f364f6cb5ffb5167d9bf4dcecc1815107c (patch) | |
tree | 1544fadc8ed997411f3346015921e1a48a467e2f /Misc | |
parent | 6558190e52748428b2db1420bf029b0745e2743a (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |