summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_iter.py
Commit message (Expand)AuthorAgeFilesLines
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-5/+11
* Teach the UNPACK_SEQUENCE opcode how to tease an iterable object intoTim Peters2001-06-211-0/+53
* Generalize zip() to work with iterators.Tim Peters2001-05-061-0/+46
* Get rid of silly 5am "del" stmts.Tim Peters2001-05-051-2/+0
* Reimplement PySequence_Contains() and instance_contains(), so they workTim Peters2001-05-051-18/+6
* Generalize PySequence_Count() (operator.countOf) to work with iterators.Tim Peters2001-05-051-0/+35
* Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators.Tim Peters2001-05-051-0/+55
* Make unicode.join() work nice with iterators. This also required a changeTim Peters2001-05-051-0/+41
* Generalize tuple() to work nicely with iterators.Tim Peters2001-05-051-0/+33
* Generalize reduce() to work with iterators.Tim Peters2001-05-041-0/+13
* Purge redundant cut&paste line.Tim Peters2001-05-031-2/+1
* Generalize map() to work with iterators.Tim Peters2001-05-031-0/+35
* Remove redundant copy+paste code.Tim Peters2001-05-031-3/+0
* Generalize max(seq) and min(seq) to work with iterators.Tim Peters2001-05-031-0/+35
* Generalize filter(f, seq) to work with iterators. This also generalizesTim Peters2001-05-021-0/+44
* Generalize list(seq) to work with iterators. This also generalizes list()Tim Peters2001-05-011-0/+32
* Add test suite for iterators.Guido van Rossum2001-04-211-0/+246