summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-02-07 00:41:02 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-02-07 00:41:02 (GMT)
commit65baa34115476cd42d41af5ca01c58226caab255 (patch)
treeffb9e77bab2a4b4995cbebc922c489881032e1ab /Misc
parent2f653c19f4ef01f326692a2e2a8111eeaa4286ac (diff)
downloadcpython-65baa34115476cd42d41af5ca01c58226caab255.zip
cpython-65baa34115476cd42d41af5ca01c58226caab255.tar.gz
cpython-65baa34115476cd42d41af5ca01c58226caab255.tar.bz2
Issue 2025: Add index() and count() methods to tuple so that it will follow
the ABC for 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 3ba1678..9ef3407 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.0a3?
Core and Builtins
-----------------
+- Issue #2025 : Add tuple.count() and tuple.index() methods to comply with
+ the collections.Sequence API.
+
- Fixed multiple reinitialization of the Python interpreter. The small int
list in longobject.c has caused a seg fault during the third finalization.