[Python-3000-checkins] r60615 - python/branches/py3k/Doc/library/collections.rst

2008-02-06 Thread mark.summerfield
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 =

[Python-3000-checkins] r60623 - python/branches/py3k/Doc/library/collections.rst

2008-02-06 Thread raymond.hettinger
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

[Python-3000-checkins] r60627 - python/branches/py3k/Lib/_abcoll.py

2008-02-06 Thread raymond.hettinger
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

[Python-3000-checkins] r60628 - python/branches/py3k/Lib/UserList.py python/branches/py3k/Lib/UserString.py

2008-02-06 Thread raymond.hettinger
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 =

[Python-3000-checkins] r60631 - python/branches/py3k/Lib/UserString.py

2008-02-06 Thread raymond.hettinger
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 =

[Python-3000-checkins] r60633 - python/branches/py3k/Lib/test/test_iterlen.py

2008-02-06 Thread raymond.hettinger
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

[Python-3000-checkins] r60635 - in python/branches/py3k: Lib/test/seq_tests.py Misc/NEWS Objects/tupleobject.c

2008-02-06 Thread raymond.hettinger
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