summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-02-07 00:54:20 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-02-07 00:54:20 (GMT)
commit5b07ebce868acab953db21a0a8c1c561e5a4ece0 (patch)
treeeb218ffac79397c68e23cee1ab9c95374b30ae06 /Misc
parent3c3d9ac46cc5d19d5a6f3a52f8261f64cfd5e117 (diff)
downloadcpython-5b07ebce868acab953db21a0a8c1c561e5a4ece0.zip
cpython-5b07ebce868acab953db21a0a8c1c561e5a4ece0.tar.gz
cpython-5b07ebce868acab953db21a0a8c1c561e5a4ece0.tar.bz2
Issue 2025: Add tuple.count() and tuple.index() to follow the ABC in collections.Sequence.
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 172678e..d15531d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,6 +25,9 @@ Core and builtins
- Issue #1678380: Fix a bug that identifies 0j and -0j when they appear
in the same code unit.
+- Issue #2025 : Add tuple.count() and tuple.index() methods to comply with
+ the collections.Sequence API.
+
- Patch #1970 by Antoine Pitrou: Speedup unicode whitespace and linebreak
detection