diff options
author | Raymond Hettinger <python@rcn.com> | 2008-02-07 00:41:02 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-02-07 00:41:02 (GMT) |
commit | 65baa34115476cd42d41af5ca01c58226caab255 (patch) | |
tree | ffb9e77bab2a4b4995cbebc922c489881032e1ab /Misc | |
parent | 2f653c19f4ef01f326692a2e2a8111eeaa4286ac (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |