summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_iterlen.py
Commit message (Collapse)AuthorAgeFilesLines
* Renamed _length_cue() to __length_hint__(). See:Armin Rigo2006-02-111-1/+3
| | | | http://mail.python.org/pipermail/python-dev/2006-February/060524.html
* Convert iterator __len__() methods to a private API.Raymond Hettinger2005-09-241-1/+11
|
* Whitespace normalization.Tim Peters2004-07-081-7/+7
|
* * Add unittests for iterators that report their lengthRaymond Hettinger2004-04-121-0/+245
* Document the differences between them * Fix corner cases covered by the unittests * Use Py_RETURN_NONE where possible for dictionaries