History log of /external/python/cpython2/Lib/test/test_enumerate.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
32e23e739f858fcf47332e437d6c4d4f14b2b697 03-Nov-2013 Serhiy Storchaka <storchaka@gmail.com> Issue #18702: All skipped tests now reported as skipped.
/external/python/cpython2/Lib/test/test_enumerate.py
cf3e20c8e8f2942d526339104bc8b864537586b7 26-Jun-2010 Benjamin Peterson <benjamin@python.org> mark implementation detail as such
/external/python/cpython2/Lib/test/test_enumerate.py
0badae4748e28bbb7b1169b2045024f1f43bf051 25-Jun-2010 Benjamin Peterson <benjamin@python.org> this must be a typo
/external/python/cpython2/Lib/test/test_enumerate.py
4b26acbf03730f8b11c54186c0cc6bcb15ace669 25-Jun-2010 Benjamin Peterson <benjamin@python.org> mark implementation detail as such
/external/python/cpython2/Lib/test/test_enumerate.py
ecb8316885695a9292b4d3efdaf3ac14ba120a61 25-May-2010 Mark Dickinson <dickinsm@gmail.com> Fix a NameError in test_enumerate.
/external/python/cpython2/Lib/test/test_enumerate.py
20665599131379d7cd9e6a447551f252a2b115c5 25-May-2010 Mark Dickinson <dickinsm@gmail.com> Issue #8816: Extra tests for some built-in functions. These tests are
ports of IronPython tests. Thanks Gregory Nofi.
/external/python/cpython2/Lib/test/test_enumerate.py
f063d158739797b14bbb10adaaa9cd65f652a373 08-May-2010 Benjamin Peterson <benjamin@python.org> run and fix enumerate start test cases #8636
/external/python/cpython2/Lib/test/test_enumerate.py
784d45506670ce86d857ee118f0f64a2b667d386 09-May-2009 Benjamin Peterson <benjamin@python.org> *sigh* deal with instances correctly
/external/python/cpython2/Lib/test/test_enumerate.py
ecf9091f59c31ca868dbf2d9626a9a697c1a084b 16-May-2008 Georg Brandl <georg@python.org> Don't allow keyword arguments to reversed().
/external/python/cpython2/Lib/test/test_enumerate.py
913835763a4734097423c49e284ce8d4b1093917 13-May-2008 Georg Brandl <georg@python.org> #2831: add start argument to enumerate(). Patch by Scott Dial and me.
/external/python/cpython2/Lib/test/test_enumerate.py
6b27cda64386195cd07dfb686e9486f1c4bc3159 24-Sep-2005 Raymond Hettinger <python@rcn.com> Convert iterator __len__() methods to a private API.
/external/python/cpython2/Lib/test/test_enumerate.py
f5f32b47128763a1f782782bd5a1a125b6d8b28b 18-Jul-2005 Tim Peters <tim.peters@gmail.com> Whitespace normalization.
/external/python/cpython2/Lib/test/test_enumerate.py
0edc7a03e2505c4e9b3186f8b6caa18a7b3988e2 12-Jul-2005 Michael W. Hudson <mwh@python.net> Fix:

[ 1229429 ] missing Py_DECREF in PyObject_CallMethod

Add a test in test_enumerate, which is a bit random, but suffices
(reversed_new calls PyObject_CallMethod under some circumstances).
/external/python/cpython2/Lib/test/test_enumerate.py
ff5dc0ee7740feba895e7ddfbdda37d9064c045e 29-Sep-2004 Raymond Hettinger <python@rcn.com> Improve test coverage.
/external/python/cpython2/Lib/test/test_enumerate.py
ffdb8bb99c4017152a9dca70669f9d6b9831d454 27-Sep-2004 Raymond Hettinger <python@rcn.com> Use floor division operator.
/external/python/cpython2/Lib/test/test_enumerate.py
ef9bf4031a2f9ec674817274c93a90e0f21db114 10-Mar-2004 Raymond Hettinger <python@rcn.com> Tidied up the implementations of reversed (including the custom ones
for xrange and list objects).

* list.__reversed__ now checks the length of the sequence object before
calling PyList_GET_ITEM() because the mutable could have changed length.

* all three implementations are now tranparent with respect to length and
maintain the invariant len(it) == len(list(it)) even when the underlying
sequence mutates.

* __builtin__.reversed() now frees the underlying sequence as soon
as the iterator is exhausted.

* the code paths were rearranged so that the most common paths
do not require a jump.
/external/python/cpython2/Lib/test/test_enumerate.py
d2c36261a202ec61bed023f22815c41d8179ace2 10-Mar-2004 Raymond Hettinger <python@rcn.com> Eliminate the double reverse option. It's only use case
was academic and it was potentially confusing to use.
/external/python/cpython2/Lib/test/test_enumerate.py
029dba5a4078bc1e9dc262d24aaa481936af49d3 10-Feb-2004 Raymond Hettinger <python@rcn.com> Make reversed() transparent with respect to length.
/external/python/cpython2/Lib/test/test_enumerate.py
06353f76beab69a538d3a55ca9b6df7e9754b999 08-Feb-2004 Raymond Hettinger <python@rcn.com> Let reversed() work with itself.
/external/python/cpython2/Lib/test/test_enumerate.py
a690a9967e715663b7a421c9ebdad91381cdf1e4 16-Nov-2003 Raymond Hettinger <python@rcn.com> * Migrate set() and frozenset() from the sandbox.
* Install the unittests, docs, newsitem, include file, and makefile update.
* Exercise the new functions whereever sets.py was being used.

Includes the docs for libfuncs.tex. Separate docs for the types are
forthcoming.
/external/python/cpython2/Lib/test/test_enumerate.py
85c20a41dfcec04d161ad7da7260e7b94c62d228 06-Nov-2003 Raymond Hettinger <python@rcn.com> Implement and apply PEP 322, reverse iteration
/external/python/cpython2/Lib/test/test_enumerate.py
b25a52aac09b725dac76013dfafa60093fb2b576 29-May-2003 Raymond Hettinger <python@rcn.com> Fix typo so that the test actually calls the tested function.
/external/python/cpython2/Lib/test/test_enumerate.py
e8b0f0461baf7aa59bc517406432ccbb70443aac 28-May-2003 Raymond Hettinger <python@rcn.com> * Beefed-up tests
* Allow tuple re-use
* Call tp_iternext directly
/external/python/cpython2/Lib/test/test_enumerate.py
21d3a32b99c5763444c34c189ef653ac9745f3c4 01-May-2003 Walter Dörwald <walter@livinglogic.de> Combine the functionality of test_support.run_unittest()
and test_support.run_classtests() into run_unittest()
and use it wherever possible.

Also don't use "from test.test_support import ...", but
"from test import test_support" in a few spots.

From SF patch #662807.
/external/python/cpython2/Lib/test/test_enumerate.py
04f357cffef6d764f2f0ff2671dabde75ec250d1 23-Jul-2002 Barry Warsaw <barry@python.org> Get rid of relative imports in all unittests. Now anything that
imports e.g. test_support must do so using an absolute package name
such as "import test.test_support" or "from test import test_support".

This also updates the README in Lib/test, and gets rid of the
duplicate data dirctory in Lib/test/data (replaced by
Lib/email/test/data).

Now Tim and Jack can have at it. :)
/external/python/cpython2/Lib/test/test_enumerate.py
8db890a21a74bb4befc5d50a59c8366be842b653 20-Jun-2002 Tim Peters <tim.peters@gmail.com> Removed the generator future-stmt -- not needed for 2.3.
/external/python/cpython2/Lib/test/test_enumerate.py
7dab2426ca0bae36fde565407ddb4b2d2cbf2575 26-Apr-2002 Guido van Rossum <guido@python.org> - New builtin function enumerate(x), from PEP 279. Example:
enumerate("abc") is an iterator returning (0,"a"), (1,"b"), (2,"c").
The argument can be an arbitrary iterable object.
/external/python/cpython2/Lib/test/test_enumerate.py