commit | 5b07ebce868acab953db21a0a8c1c561e5a4ece0 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Thu Feb 07 00:54:20 2008 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Thu Feb 07 00:54:20 2008 +0000 |
tree | eb218ffac79397c68e23cee1ab9c95374b30ae06 | |
parent | 3c3d9ac46cc5d19d5a6f3a52f8261f64cfd5e117 [diff] [blame] |
Issue 2025: Add tuple.count() and tuple.index() to follow the ABC in collections.Sequence.
diff --git a/Misc/NEWS b/Misc/NEWS index 172678e..d15531d 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -25,6 +25,9 @@ - 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