index
:
cpython
3.10
3.11
3.12
3.13
3.9
main
The Python programming language
Aslak Raanes
about
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_enumerate.py
Commit message (
Expand
)
Author
Age
*
bpo-46527: allow calling enumerate(iterable=...) again (GH-30904)
Jelle Zijlstra
2022-01-27
*
bpo-42536: GC track recycled tuples (GH-23623)
Brandt Bucher
2020-12-04
*
bpo-33462: Add __reversed__ to dict and dict views (GH-6827)
Rémi Lapeyre
2018-11-06
*
Anti-registration of various ABC methods.
Guido van Rossum
2016-08-18
*
Issue #21741: Update 147 test modules to use test discovery.
Zachary Ware
2015-04-13
*
Issue #22777: Test pickling with all protocols.
Serhiy Storchaka
2014-12-15
*
Issue #18702: All skipped tests now reported as skipped.
Serhiy Storchaka
2013-11-03
*
Issue #16148: Small improvements and cleanup. Added version information
Armin Ronacher
2012-10-07
*
Issue #16148: implemented PEP 424
Armin Ronacher
2012-10-06
*
Issue #14288: Serialization support for builtin iterators.
Kristján Valur Jónsson
2012-04-03
*
fix typos
Benjamin Peterson
2010-06-25
*
Merged revisions 82229 via svnmerge from
Benjamin Peterson
2010-06-25
*
Merged revisions 82225 via svnmerge from
Benjamin Peterson
2010-06-25
*
Merged revisions 81527 via svnmerge from
Mark Dickinson
2010-05-25
*
Merged revisions 81525 via svnmerge from
Mark Dickinson
2010-05-25
*
Merged revisions 80991 via svnmerge from
Benjamin Peterson
2010-05-08
*
#2621 rename test.test_support to test.support
Benjamin Peterson
2008-05-20
*
Merged revisions 63361-63373,63375,63377-63380 via svnmerge from
Alexandre Vassalotti
2008-05-16
*
Merged revisions 63208-63209,63211-63212,63214-63217,63219-63224,63226-63227,...
Alexandre Vassalotti
2008-05-16
*
Merged revisions 55007-55179 via svnmerge from
Guido van Rossum
2007-05-07
*
PEP 3114: rename .next() to .__next__() and add next() builtin.
Georg Brandl
2007-04-21
*
Fix most trivially-findable print statements.
Guido van Rossum
2007-02-09
*
Make built-in zip() equal to itertools.izip().
Guido van Rossum
2006-08-24
*
Adjust test_enumerate to accomodate for iter() blowing up sooner than
Thomas Wouters
2006-04-15
*
Convert iterator __len__() methods to a private API.
Raymond Hettinger
2005-09-24
*
Whitespace normalization.
Tim Peters
2005-07-17
*
Fix:
Michael W. Hudson
2005-07-12
*
Improve test coverage.
Raymond Hettinger
2004-09-29
*
Use floor division operator.
Raymond Hettinger
2004-09-27
*
Tidied up the implementations of reversed (including the custom ones
Raymond Hettinger
2004-03-10
*
Eliminate the double reverse option. It's only use case
Raymond Hettinger
2004-03-10
*
Make reversed() transparent with respect to length.
Raymond Hettinger
2004-02-10
*
Let reversed() work with itself.
Raymond Hettinger
2004-02-08
*
* Migrate set() and frozenset() from the sandbox.
Raymond Hettinger
2003-11-16
*
Implement and apply PEP 322, reverse iteration
Raymond Hettinger
2003-11-06
*
Fix typo so that the test actually calls the tested function.
Raymond Hettinger
2003-05-29
*
* Beefed-up tests
Raymond Hettinger
2003-05-28
*
Combine the functionality of test_support.run_unittest()
Walter Dörwald
2003-05-01
*
Get rid of relative imports in all unittests. Now anything that
Barry Warsaw
2002-07-23
*
Removed the generator future-stmt -- not needed for 2.3.
Tim Peters
2002-06-20
*
- New builtin function enumerate(x), from PEP 279. Example:
Guido van Rossum
2002-04-26