| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merged revisions 77942,79023 via svnmerge from | Ezio Melotti | 2010-08-02 | 1 | -5/+10 |
| | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r77942 | ezio.melotti | 2010-02-03 07:37:26 +0200 (Wed, 03 Feb 2010) | 1 line #7092: Silence more py3k warnings. Patch by Florent Xicluna. ........ r79023 | ezio.melotti | 2010-03-17 15:52:48 +0200 (Wed, 17 Mar 2010) | 1 line #7092: silence some more py3k warnings. ........ | ||||
| * | Issue #7410: deepcopy of itertools.count() erroneously reset the count. | Raymond Hettinger | 2009-11-30 | 1 | -0/+9 |
| | | |||||
| * | Issue 7244: Fix indentation in C code. Fix test to not sent output to stdout. | Raymond Hettinger | 2009-11-01 | 1 | -4/+7 |
| | | |||||
| * | Issue 7244: fix exception handling in itertools.izip_longest(). | Raymond Hettinger | 2009-11-01 | 1 | -0/+37 |
| | | |||||
| * | Add some cross-references to the docs. Simplify the python code equivalent ↵ | Raymond Hettinger | 2009-02-19 | 1 | -3/+3 |
| | | | | | for izip(). Supply an optional argument for the nth() recipe. | ||||
| * | Minor doc fixes. | Raymond Hettinger | 2009-02-04 | 1 | -3/+6 |
| | | |||||
| * | Fixup itertools recipe to cover a corner case. | Raymond Hettinger | 2009-01-27 | 1 | -0/+2 |
| | | |||||
| * | Backport r68942: update powerset() recipe. | Raymond Hettinger | 2009-01-26 | 1 | -7/+5 |
| | | |||||
| * | - Issue 4816: itertools.combinations() and itertools.product were raising | Raymond Hettinger | 2009-01-08 | 1 | -9/+33 |
| | | | | | | a ValueError for values of *r* larger than the input iterable. They now correctly return an empty iterator. | ||||
| * | Issue #4615. Document how to use itertools for de-duping. | Raymond Hettinger | 2009-01-02 | 1 | -0/+36 |
| | | |||||
| * | Alter recipe to show how to call izip_longest() with | Raymond Hettinger | 2008-07-31 | 1 | -2/+1 |
| | | | | | both a keyword argument and star arguments. | ||||
| * | Neaten-up the itertools recipes. | Raymond Hettinger | 2008-07-30 | 1 | -6/+4 |
| | | |||||
| * | Clean-up itertools docs and recipes. | Raymond Hettinger | 2008-07-19 | 1 | -55/+17 |
| | | |||||
| * | Fix compress() recipe in docs to use itertools. | Raymond Hettinger | 2008-07-19 | 1 | -3/+3 |
| | | |||||
| * | Add recipe to the itertools docs. | Raymond Hettinger | 2008-07-19 | 1 | -0/+18 |
| | | |||||
| * | Simplify demo code. | Raymond Hettinger | 2008-03-23 | 1 | -1/+1 |
| | | |||||
| * | Add recipe to docs. | Raymond Hettinger | 2008-03-11 | 1 | -0/+9 |
| | | |||||
| * | Tweak recipes and tests | Raymond Hettinger | 2008-03-07 | 1 | -7/+30 |
| | | |||||
| * | Issue 2246: itertools grouper object did not participate in GC (should be ↵ | Raymond Hettinger | 2008-03-06 | 1 | -0/+7 |
| | | | | | backported). | ||||
| * | More tests. | Raymond Hettinger | 2008-03-06 | 1 | -6/+144 |
| | | |||||
| * | C implementation of itertools.permutations(). | Raymond Hettinger | 2008-03-05 | 1 | -13/+18 |
| | | |||||
| * | Beef-up docs and tests for itertools. Fix-up end-case for product(). | Raymond Hettinger | 2008-03-04 | 1 | -6/+112 |
| | | |||||
| * | Handle the repeat keyword argument for itertools.product(). | Raymond Hettinger | 2008-02-29 | 1 | -0/+3 |
| | | |||||
| * | Add alternate constructor for itertools.chain(). | Raymond Hettinger | 2008-02-28 | 1 | -0/+7 |
| | | |||||
| * | Have itertools.chain() consume its inputs lazily instead of building a tuple ↵ | Raymond Hettinger | 2008-02-28 | 1 | -2/+2 |
| | | | | | of iterators at the outset. | ||||
| * | Larger test range | Raymond Hettinger | 2008-02-27 | 1 | -1/+1 |
| | | |||||
| * | Add itertools.combinations(). | Raymond Hettinger | 2008-02-26 | 1 | -0/+24 |
| | | |||||
| * | Make sure the itertools filter functions give the same performance for ↵ | Raymond Hettinger | 2008-02-25 | 1 | -0/+2 |
| | | | | | func=bool as func=None. | ||||
| * | Improve the implementation of itertools.product() | Raymond Hettinger | 2008-02-23 | 1 | -0/+3 |
| | | | | | | | | | * Fix-up issues pointed-out by Neal Norwitz. * Add extensive comments. * The lz->result variable is now a tuple instead of a list. * Use fast macro getitem/setitem calls so most code is in-line. * Re-use the result tuple if available (modify in-place instead of copy). | ||||
| * | First draft for itertools.product(). Docs and other updates forthcoming. | Raymond Hettinger | 2008-02-22 | 1 | -0/+28 |
| | | |||||
| * | Make starmap() match its pure python definition and accept any itertable ↵ | Raymond Hettinger | 2008-01-17 | 1 | -1/+2 |
| | | | | | input (not just tuples). | ||||
| * | Fix test of count.__repr__() to ignore the 'L' if the count is a long | Raymond Hettinger | 2007-10-12 | 1 | -1/+4 |
| | | |||||
| * | itertools.count() no longer limited to sys.maxint. | Raymond Hettinger | 2007-10-04 | 1 | -1/+6 |
| | | |||||
| * | Fix those parts in the testsuite that assumed that sys.maxint would cause ↵ | Kristján Valur Jónsson | 2007-05-03 | 1 | -2/+4 |
| | | | | | overflow on x64. Now the testsuite is well behaved on that platform. | ||||
| * | Whitespace normalization. | Tim Peters | 2007-03-12 | 1 | -4/+4 |
| | | |||||
| * | Add itertools.izip_longest(). | Raymond Hettinger | 2007-02-21 | 1 | -0/+54 |
| | | |||||
| * | Do not let overflows in enumerate() and count() pass silently. | Raymond Hettinger | 2007-02-08 | 1 | -2/+1 |
| | | |||||
| * | Bug #1486663: don't reject keyword arguments for subclasses of builtin | Georg Brandl | 2007-01-21 | 1 | -1/+17 |
| | | | | | types. | ||||
| * | * regression bug, count_next was coercing a Py_ssize_t to an unsigned Py_size_t | Jack Diederich | 2006-09-21 | 1 | -0/+4 |
| | | | | | | | which breaks negative counts * added test for negative numbers will backport to 2.5.1 | ||||
| * | Bug #1550714: fix SystemError from itertools.tee on negative value for n. | Neal Norwitz | 2006-09-02 | 1 | -0/+1 |
| | | | | | Needs backport to 2.5.1 and earlier. | ||||
| * | ("Forward-port" of r46506) | Armin Rigo | 2006-05-28 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | Remove various dependencies on dictionary order in the standard library tests, and one (clearly an oversight, potentially critical) in the standard library itself - base64.py. Remaining open issues: * test_extcall is an output test, messy to make robust * tarfile.py has a potential bug here, but I'm not familiar enough with this code. Filed in as SF bug #1496501. * urllib2.HTTPPasswordMgr() returns a random result if there is more than one matching root path. I'm asking python-dev for clarification... | ||||
| * | Convert iterator __len__() methods to a private API. | Raymond Hettinger | 2005-09-24 | 1 | -0/+1 |
| | | |||||
| * | SF patch #1171417: bug fix for islice() in docs | Raymond Hettinger | 2005-03-27 | 1 | -0/+5 |
| | | |||||
| * | Revised the itertools quantifier recipes to match the performance of the | Raymond Hettinger | 2005-03-11 | 1 | -8/+8 |
| | | | | | new builtins. | ||||
| * | Added optional None arguments to itertools.islice(). | Raymond Hettinger | 2004-12-05 | 1 | -0/+2 |
| | | |||||
| * | Fix and test weak referencing of itertools.tee objects. | Raymond Hettinger | 2004-10-17 | 1 | -0/+8 |
| | | |||||
| * | Improve test coverage. | Raymond Hettinger | 2004-09-29 | 1 | -0/+16 |
| | | |||||
| * | * Increase test coverage. | Raymond Hettinger | 2004-09-28 | 1 | -0/+29 |
| | | | | | * Have groupby() be careful about decreffing structure members. | ||||
| * | Use floor division operator. | Raymond Hettinger | 2004-09-27 | 1 | -1/+1 |
| | | |||||
| * | Improve three recipes in the itertools docs. | Raymond Hettinger | 2004-09-23 | 1 | -3/+9 |
| | | |||||
