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_iter.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-101892: Fix `SystemError` when a callable iterator call exhausts the itera...
Raj
2023-03-04
1
-0/+25
*
gh-101765: Fix SystemError / segmentation fault in iter `__reduce__` when int...
Ionite
2023-02-24
1
-0/+81
*
gh-94808: Coverage: Check picklablability of calliter (#95923)
Michael Droettboom
2022-10-03
1
-10/+11
*
bpo-45229: Remove test_main in many tests (GH-28405)
Serhiy Storchaka
2021-09-19
1
-6/+2
*
bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25189)
Inada Naoki
2021-04-06
1
-24/+24
*
bpo-40275: Use new test.support helper submodules in tests (GH-21169)
Hai Shi
2020-06-30
1
-1/+2
*
bpo-40824: Do not mask errors in __iter__ in "in" and the operator module. (G...
Serhiy Storchaka
2020-06-22
1
-0/+7
*
bpo-37648: Fixed minor inconsistency in some __contains__. (GH-14904)
Serhiy Storchaka
2019-08-04
1
-1/+22
*
Anti-registration of various ABC methods.
Guido van Rossum
2016-08-18
1
-0/+12
*
Issue #26492: Added additional tests for exhausted iterators of mutable seque...
Serhiy Storchaka
2016-03-30
1
-0/+11
*
Issue #26494: Fixed crash on iterating exhausting iterators.
Serhiy Storchaka
2016-03-30
1
-0/+4
*
Issue #26015: Added new tests for pickling iterators of mutable sequences.
Serhiy Storchaka
2016-03-06
1
-0/+36
*
Issue #23985: Fixed integer overflow in iterator object. Patch by
Serhiy Storchaka
2015-05-21
1
-0/+25
*
Issue #22777: Test pickling with all protocols.
Serhiy Storchaka
2014-12-15
1
-16/+17
*
#7782: merge with 3.3.
Ezio Melotti
2012-11-18
1
-0/+15
*
Issue #14288: Serialization support for builtin iterators.
Kristján Valur Jónsson
2012-04-03
1
-8/+35
*
Merged revisions 82167 via svnmerge from
Benjamin Peterson
2010-06-22
1
-4/+3
*
Merged revisions 82165 via svnmerge from
Benjamin Peterson
2010-06-22
1
-1/+3
*
use assert[Not]In where appropriate
Benjamin Peterson
2010-01-19
1
-10/+10
*
convert old fail* assertions to assert*
Benjamin Peterson
2009-06-30
1
-11/+11
*
Merged revisions 68560 via svnmerge from
Amaury Forgeot d'Arc
2009-01-12
1
-0/+22
*
#2621 rename test.test_support to test.support
Benjamin Peterson
2008-05-20
1
-1/+1
*
Replace map(None, *iterables) with zip(*iterables).
Raymond Hettinger
2008-01-22
1
-8/+0
*
Raise statement normalization in Lib/test/.
Collin Winter
2007-08-29
1
-1/+1
*
Merged revisions 56125-56153 via svnmerge from
Guido van Rossum
2007-07-03
1
-16/+21
*
Simplify various spots where: str() is called on something
Walter Dörwald
2007-06-11
1
-1/+1
*
Remove have_unicode checks and merge those tests into the
Walter Dörwald
2007-05-22
1
-12/+2
*
Merged revisions 55007-55179 via svnmerge from
Guido van Rossum
2007-05-07
1
-33/+32
*
Rip out all the u"..." literals and calls to unicode().
Guido van Rossum
2007-05-02
1
-5/+5
*
PEP 3114: rename .next() to .__next__() and add next() builtin.
Georg Brandl
2007-04-21
1
-7/+7
*
Fix test_iter after the dict views conversion.
Brett Cannon
2007-02-22
1
-7/+7
*
- PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;
Guido van Rossum
2007-02-11
1
-14/+14
*
- patch #1600346 submitted by Tomer Filiba
Jack Diederich
2006-11-28
1
-3/+3
*
Make built-in zip() equal to itertools.izip().
Guido van Rossum
2006-08-24
1
-13/+16
*
Anna Ravenscroft identified many occurrences of "file" used to open a file
Alex Martelli
2006-08-24
1
-2/+2
*
Kill reduce(). A coproduction of John Reese, Jacques Frechet, and Alex M.
Guido van Rossum
2006-08-22
1
-13/+0
*
As discussed on python-dev, changed builtin.zip() to handle zero arguments
Raymond Hettinger
2003-08-02
1
-1/+4
*
Don't rebind True and False.
Tim Peters
2002-12-23
1
-5/+5
*
Mark xreadlines deprecated. Don't use f.xreadlines() in test_iter.py.
Guido van Rossum
2002-08-06
1
-2/+2
*
Get rid of relative imports in all unittests. Now anything that
Barry Warsaw
2002-07-23
1
-1/+1
*
Bunch of tests to make sure that StopIteration is a sink state.
Guido van Rossum
2002-07-16
1
-0/+76
*
builtin_zip(): Take a good guess at how big the result list will be,
Tim Peters
2002-04-29
1
-0/+28
*
unpack_iterable(): Add a missing DECREF in an error case. Reported by
Guido van Rossum
2001-12-03
1
-0/+23
*
Whitespace normalization.
Tim Peters
2001-10-04
1
-4/+4
*
Generalize file.writelines() to allow iterable objects.
Tim Peters
2001-09-23
1
-0/+53
*
Change the PyUnit-based tests to use the test_main() approach. This
Fred Drake
2001-09-20
1
-1/+7
*
Generalize operator.indexOf (PySequence_Index) to work with any
Tim Peters
2001-09-08
1
-0/+41
*
Patch #445762: Support --disable-unicode
Martin v. Löwis
2001-08-17
1
-5/+11
*
Teach the UNPACK_SEQUENCE opcode how to tease an iterable object into
Tim Peters
2001-06-21
1
-0/+53
*
Generalize zip() to work with iterators.
Tim Peters
2001-05-06
1
-0/+46
[next]