summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_itertools.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-151-1/+1
* Merged revisions 55325-55327 via svnmerge fromGuido van Rossum2007-05-141-2/+4
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-55/+57
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-9/+9
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-46/+46
* Merged revisions 53623-53858 via svnmerge fromThomas Wouters2007-02-231-2/+55
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-111-2/+2
* Fix a bunch of doctests with the -d option of refactor.py.Guido van Rossum2007-02-091-10/+10
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-1/+1
* Merged revisions 53451-53537 via svnmerge fromThomas Wouters2007-02-011-1/+17
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-0/+5
* Make built-in zip() equal to itertools.izip().Guido van Rossum2006-08-241-15/+19
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-3/+3
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-1/+1
* Fix tests that were trying to make iteration blow up, on broken iterators.Thomas Wouters2006-04-151-12/+12
* Convert iterator __len__() methods to a private API.Raymond Hettinger2005-09-241-0/+1
* SF patch #1171417: bug fix for islice() in docsRaymond Hettinger2005-03-271-0/+5
* Revised the itertools quantifier recipes to match the performance of theRaymond Hettinger2005-03-111-8/+8
* Added optional None arguments to itertools.islice().Raymond Hettinger2004-12-051-0/+2
* Fix and test weak referencing of itertools.tee objects.Raymond Hettinger2004-10-171-0/+8
* Improve test coverage.Raymond Hettinger2004-09-291-0/+16
* * Increase test coverage.Raymond Hettinger2004-09-281-0/+29
* Use floor division operator.Raymond Hettinger2004-09-271-1/+1
* Improve three recipes in the itertools docs.Raymond Hettinger2004-09-231-3/+9
* test_sf_950057's gen1() used an assert statement, which caused the testTim Peters2004-07-181-1/+1
* SF #950057: itertools.chain doesn't "process" exceptions as they occurRaymond Hettinger2004-05-081-0/+30
* Give itertools.repeat() a length method.Raymond Hettinger2004-02-101-1/+7
* Add a Guido inspired example for groupby().Raymond Hettinger2004-01-201-0/+14
* Guido grants a Christmas wish:Raymond Hettinger2003-12-171-5/+5
* Implement itertools.groupby()Raymond Hettinger2003-12-061-1/+107
* Improve the implementation of itertools.tee().Raymond Hettinger2003-11-121-24/+31
* Replace the window() example with pairwise() which demonstrates tee().Raymond Hettinger2003-10-261-13/+10
* Minor improvements to itertools.tee():Raymond Hettinger2003-10-261-0/+12
* Added itertools.tee()Raymond Hettinger2003-10-241-61/+130
* Adopt Christian Stork's suggested argument order for the logic quantifiers.Raymond Hettinger2003-10-051-11/+11
* Simplify doctest of tee().Raymond Hettinger2003-09-131-6/+2
* Add an example to address a common question of how to split iterators.Raymond Hettinger2003-09-081-4/+30
* SF bug #793826: using itertools.izip to mutate tuplesRaymond Hettinger2003-08-291-1/+32
* Modified itertools.izip() to match the behavior of __builtin__.zip()Raymond Hettinger2003-08-081-1/+6
* Re-sync doc tests with the doc updates.Raymond Hettinger2003-08-081-3/+7
* More testsRaymond Hettinger2003-06-291-3/+59
* Add take() to examples. Tighten the islice() exampleRaymond Hettinger2003-06-281-1/+7
* Minor updates:Raymond Hettinger2003-06-181-5/+14
* Test ability to handle various type of iterators.Raymond Hettinger2003-05-291-4/+188
* Minor cleanups.Raymond Hettinger2003-05-161-5/+1
* * Added a substantial number of edge case and argument tests forRaymond Hettinger2003-05-031-15/+76
* Add StopIteration tests.Raymond Hettinger2003-05-021-7/+27
* The previous made the stop argument optional.Raymond Hettinger2003-05-021-1/+1
* SF bug #730685: itertools.islice stop argument is not optionalRaymond Hettinger2003-05-021-3/+71
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-3/+1