summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-04-26 03:09:45 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-04-26 03:09:45 (GMT)
commitba42fd5801af664060dd90fccc4054b73967944c (patch)
tree4dc15aa0aac6a604f28de7a316701c0c4c64425f /Misc
parent2043f9c582943ec7624f8aec5dc58e59a0b9a5b0 (diff)
downloadcpython-ba42fd5801af664060dd90fccc4054b73967944c.zip
cpython-ba42fd5801af664060dd90fccc4054b73967944c.tar.gz
cpython-ba42fd5801af664060dd90fccc4054b73967944c.tar.bz2
#6780: fix starts/endswith error message to mention that tuples are accepted too.
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 663846f..b248d5b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.1.4?
Core and Builtins
-----------------
+- Issue #6780: fix starts/endswith error message to mention that tuples are
+ accepted too.
+
- Issue #5057: fix a bug in the peepholer that led to non-portable pyc files
between narrow and wide builds while optimizing BINARY_SUBSCR on non-BMP
chars (e.g. "\U00012345"[0]).