Author: mark.summerfield
Date: Wed Feb 6 14:30:44 2008
New Revision: 60615
Modified:
python/branches/py3k/Doc/library/collections.rst
Log:
Fixed a table and a title that were broken.
Modified: python/branches/py3k/Doc/library/collections.rst
=
Author: raymond.hettinger
Date: Wed Feb 6 20:54:00 2008
New Revision: 60623
Modified:
python/branches/py3k/Doc/library/collections.rst
Log:
Fix-up the collections docs.
* Start filling in detail and examples for ABCs
* Fix old reference to IterableUserDict.
* Neaten-up the introduction.
Mod
Author: raymond.hettinger
Date: Wed Feb 6 21:47:09 2008
New Revision: 60627
Modified:
python/branches/py3k/Lib/_abcoll.py
Log:
Fix-up the _from_iterable() method to return instances of the subclass where it
is used.
In its previous form, it always returned instance of frozenset which makes th
Author: raymond.hettinger
Date: Wed Feb 6 21:59:41 2008
New Revision: 60628
Modified:
python/branches/py3k/Lib/UserList.py
python/branches/py3k/Lib/UserString.py
Log:
Let the world know that UserList is a MutableSequence.
Modified: python/branches/py3k/Lib/UserList.py
=
Author: raymond.hettinger
Date: Wed Feb 6 23:14:55 2008
New Revision: 60631
Modified:
python/branches/py3k/Lib/UserString.py
Log:
MutableSequence requires an insert() method.
Modified: python/branches/py3k/Lib/UserString.py
=
Author: raymond.hettinger
Date: Wed Feb 6 23:45:43 2008
New Revision: 60633
Modified:
python/branches/py3k/Lib/test/test_iterlen.py
Log:
Reversed UserLists are not required to support __length_hint__.
Modified: python/branches/py3k/Lib/test/test_iterlen.py
Author: raymond.hettinger
Date: Thu Feb 7 01:41:02 2008
New Revision: 60635
Modified:
python/branches/py3k/Lib/test/seq_tests.py
python/branches/py3k/Misc/NEWS
python/branches/py3k/Objects/tupleobject.c
Log:
Issue 2025: Add index() and count() methods to tuple so that it will follow
the