summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_iter.py
Commit message (Expand)AuthorAgeFilesLines
* Mark xreadlines deprecated. Don't use f.xreadlines() in test_iter.py.Guido van Rossum2002-08-061-2/+2
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
* Bunch of tests to make sure that StopIteration is a sink state.Guido van Rossum2002-07-161-0/+76
* builtin_zip(): Take a good guess at how big the result list will be,Tim Peters2002-04-291-0/+28
* unpack_iterable(): Add a missing DECREF in an error case. Reported byGuido van Rossum2001-12-031-0/+23
* Whitespace normalization.Tim Peters2001-10-041-4/+4
* Generalize file.writelines() to allow iterable objects.Tim Peters2001-09-231-0/+53
* Change the PyUnit-based tests to use the test_main() approach. ThisFred Drake2001-09-201-1/+7
* Generalize operator.indexOf (PySequence_Index) to work with anyTim Peters2001-09-081-0/+41
* 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