summaryrefslogtreecommitdiff
path: root/Lib/test/test_iter.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #26492: Added additional tests for exhausted iterators of mutable seque...Serhiy Storchaka2016-03-301-0/+11
* Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-301-1/+5
* Issue #19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-101-3/+1
* #7782: add a test for test_iter.Ezio Melotti2012-11-181-0/+15
* mark ref counting as impl detailBenjamin Peterson2010-06-221-4/+3
* must force gc hereBenjamin Peterson2010-06-221-1/+3
* #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k...Florent Xicluna2010-03-211-8/+16
* use assert[Not]In where appropriateEzio Melotti2010-01-231-10/+10
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-14/+3
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...Senthil Kumaran2010-01-081-3/+14
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-11/+11
* #3720: Interpreter crashes when an evil iterator removes its own next function.Amaury Forgeot d'Arc2009-01-121-0/+22
* As discussed on python-dev, changed builtin.zip() to handle zero argumentsRaymond Hettinger2003-08-021-1/+4
* Don't rebind True and False.Tim Peters2002-12-231-5/+5
* 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