index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_itertools.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
[2.7] bpo-34410: Fix a crash in the tee iterator when re-enter it. (GH-15625)...
Serhiy Storchaka
2019-09-09
1
-0/+41
*
[2.7] bpo-27212: Modify islice recipe to consume initial values preceding sta...
Cheryl Sabella
2018-04-02
1
-1/+68
*
Fix DeprecationWarning in tests (#4345)
Victor Stinner
2017-11-08
1
-0/+2
*
[2.7] bpo-30347: Stop crashes when concurrently iterate over itertools.groupb...
Serhiy Storchaka
2017-09-26
1
-0/+23
*
bpo-29942: Fix the use of recursion in itertools.chain.from_iterable. (#913)
T. Wouters
2017-03-30
1
-0/+8
*
Issue #28019: Backported additional tests for itertools.count().
Serhiy Storchaka
2016-09-10
1
-3/+26
*
Document another recipe for itertools: all_equal(). Inspired by David Beazley.
Raymond Hettinger
2016-03-07
1
-0/+8
*
Make some tests more frienly to MemoryError.
Serhiy Storchaka
2015-03-28
1
-2/+6
*
Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests.
Serhiy Storchaka
2015-02-02
1
-7/+5
*
check for overflows in permutations() and product() (closes #23363, closes #2...
Benjamin Peterson
2015-02-02
1
-0/+12
*
check for overflow in combinations_with_replacement (closes #23365)
Benjamin Peterson
2015-02-02
1
-0/+5
*
detect overflow in combinations (closes #23366)
Benjamin Peterson
2015-02-02
1
-0/+5
*
Issue #22777: Test pickling with all protocols.
Serhiy Storchaka
2014-12-15
1
-1/+2
*
allow test to work on implementations not using ref-counting (closes #22265)
Benjamin Peterson
2014-08-24
1
-0/+1
*
Issue #19145: Fix handling of negative values for a "times" keyword argument...
Raymond Hettinger
2014-06-25
1
-0/+9
*
Issue #21321: itertools.islice() now releases the reference to the source ite...
Antoine Pitrou
2014-04-29
1
-2/+11
*
Issue #21346: Fix typos in test_itertools. Patch by Brian Kearns.
Zachary Ware
2014-04-24
1
-2/+2
*
Revert a premature patch for issue #14010 (changeset d17d10c84d27).
Serhiy Storchaka
2013-04-06
1
-134/+1
*
Issue #14010: Fix a crash when iterating or deleting deeply nested filters
Serhiy Storchaka
2013-04-06
1
-1/+134
*
Optimize the test for issue #13454.
Serhiy Storchaka
2013-01-26
1
-4/+2
*
Issue #13454: Fix a crash when deleting an iterator created by itertools.tee()
Serhiy Storchaka
2013-01-25
1
-0/+8
*
Backport 2eb8789e30e7.
Alex Gaynor
2011-07-17
1
-6/+15
*
#11565: Fix several typos. Patch by Piotr Kasprzyk.
Ezio Melotti
2011-03-16
1
-1/+1
*
Issue #10323: Predictable final state for slice().
Raymond Hettinger
2010-11-30
1
-0/+5
*
Merged revisions 86596 via svnmerge from
Ezio Melotti
2010-11-21
1
-11/+11
*
#7092: Silence more py3k warnings. Patch by Florent Xicluna.
Ezio Melotti
2010-02-03
1
-9/+14
*
use assert[Not]In where appropriate
Ezio Melotti
2010-01-23
1
-1/+1
*
Reverting the Revision: 77368. I committed Flox's big patch for tests by
Senthil Kumaran
2010-01-08
1
-12/+9
*
Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...
Senthil Kumaran
2010-01-08
1
-9/+12
*
Issue 7410: deepcopy of itertools.count resets the count
Raymond Hettinger
2009-11-30
1
-0/+9
*
Fix exception handling in itertools.izip_longest().
Raymond Hettinger
2009-11-01
1
-0/+40
*
convert usage of fail* to assert*
Benjamin Peterson
2009-06-30
1
-7/+7
*
Fix keyword arguments for itertools.count().
Raymond Hettinger
2009-02-21
1
-0/+2
*
Add some cross-references to the docs. Simplify the python code equivalent f...
Raymond Hettinger
2009-02-19
1
-3/+3
*
Add keyword arg support to itertools.repeat().
Raymond Hettinger
2009-02-19
1
-0/+1
*
Add keyword arg support to itertools.compress().
Raymond Hettinger
2009-02-19
1
-0/+1
*
Add GC support to count() objects. Backport candidate.
Raymond Hettinger
2009-02-16
1
-0/+5
*
Add keyword argument support to itertools.count().
Raymond Hettinger
2009-02-14
1
-0/+2
*
One more test.
Raymond Hettinger
2009-02-12
1
-0/+3
*
Add an extra testcase.
Raymond Hettinger
2009-02-12
1
-0/+3
*
Issue 5032: added a step argument to itertools.count() and allowed non-integ...
Raymond Hettinger
2009-02-12
1
-1/+36
*
Minor doc fixups.
Raymond Hettinger
2009-02-04
1
-3/+6
*
Add more tests for the powerset() recipe.
Raymond Hettinger
2009-01-27
1
-0/+6
*
More exhaustive combinatoric checks.
Raymond Hettinger
2009-01-27
1
-16/+28
*
Stronger tests for combinatoric relationships.
Raymond Hettinger
2009-01-27
1
-1/+5
*
Add tests to verify combinatoric relationships.
Raymond Hettinger
2009-01-27
1
-0/+26
*
Promote combinations_with_replacement() from a recipe to a regular itertool.
Raymond Hettinger
2009-01-27
1
-38/+78
*
Improved itertools recipe for generating powerset().
Raymond Hettinger
2009-01-25
1
-7/+5
*
Promote compress() from a recipe to being a regular itertool.
Raymond Hettinger
2009-01-25
1
-8/+32
*
Forward port r68394 for issue 4816.
Raymond Hettinger
2009-01-08
1
-9/+33
[next]