History log of /external/python/cpython2/Lib/test/list_tests.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
0ed3891915425b1af26e26c4c5d350e85e7ea4cf 30-Mar-2016 Serhiy Storchaka <storchaka@gmail.com> Issue #26492: Added additional tests for exhausted iterators of mutable sequences.
/external/python/cpython2/Lib/test/list_tests.py
3b9d92aefef17ee528e4bfa0f7e87dc61e4a0da6 06-Nov-2011 Petri Lehtinen <petri@digip.org> Revert "Accept None as start and stop parameters for list.index() and tuple.index()"

Issue #13340.
/external/python/cpython2/Lib/test/list_tests.py
819d8d447da7e2a8530574af2a7574fdc011b0c2 05-Nov-2011 Petri Lehtinen <petri@digip.org> Accept None as start and stop parameters for list.index() and tuple.index()

Closes #13340.
/external/python/cpython2/Lib/test/list_tests.py
2623a37852153363335956afab010cb0beb7e74e 21-Nov-2010 Ezio Melotti <ezio.melotti@gmail.com> Merged revisions 86596 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line

#9424: Replace deprecated assert* methods in the Python test suite.
........
/external/python/cpython2/Lib/test/list_tests.py
8a470d6039ffe85ea2e0f095fd0f0b960f099b94 16-May-2010 Victor Stinner <victor.stinner@haypocalc.com> Use with open() as fo: ... instead of try: fo = open(...) finally: fo.close()

fo is not set if the open() fails.
/external/python/cpython2/Lib/test/list_tests.py
07627880813ffaad8d9b90bfe8791ccf588b031b 21-Mar-2010 Florent Xicluna <florent.xicluna@gmail.com> #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k_warnings() helper.
/external/python/cpython2/Lib/test/list_tests.py
36ecd676eac6c9d7ace41a1ff35124912371e91d 29-Jan-2010 Mark Dickinson <dickinsm@gmail.com> Issue #7788: Fix a crash produced by deleting a list slice with huge
step value. Patch by Marcin Bachry.
/external/python/cpython2/Lib/test/list_tests.py
ce8e33a095030e7af94f58f9da196b240bdf0476 08-Jan-2010 Senthil Kumaran <orsenthil@gmail.com> Reverting the Revision: 77368. I committed Flox's big patch for tests by
mistake. ( It may come in for sure tough)
/external/python/cpython2/Lib/test/list_tests.py
3ddc435af6873c6304058d7bcbcb19ee4fba7781 08-Jan-2010 Senthil Kumaran <orsenthil@gmail.com> Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox
/external/python/cpython2/Lib/test/list_tests.py
7989a4dccb39aa954057cbc4205473f09daae84b 03-Dec-2008 Raymond Hettinger <python@rcn.com> Backport r67478
/external/python/cpython2/Lib/test/list_tests.py
c5f05e45cffa16f45f1332cec531c045893f928f 23-Feb-2008 Christian Heimes <christian@cheimes.de> Patch #2167 from calvin: Remove unused imports
/external/python/cpython2/Lib/test/list_tests.py
4e2f714031654eb4174393454c008961b636f539 06-Dec-2007 Raymond Hettinger <python@rcn.com> Fix Issue 1045.
Factor-out common calling code by simplifying the length_hint API.
Speed-up the function by caching the PyObject_String for the attribute lookup.
/external/python/cpython2/Lib/test/list_tests.py
a0c05512ec071b98e8170c8cfe845bee6fc934da 10-Sep-2007 Brett Cannon <bcannon@gmail.com> Fix a possible segfault from recursing too deep to get the repr of a list.

Closes issue #1096.
/external/python/cpython2/Lib/test/list_tests.py
3ccec68a05abae43cf74dc7821c61ba88ab6cb46 28-Aug-2007 Thomas Wouters <thomas@python.org> Improve extended slicing support in builtin types and classes. Specifically:

- Specialcase extended slices that amount to a shallow copy the same way as
is done for simple slices, in the tuple, string and unicode case.

- Specialcase step-1 extended slices to optimize the common case for all
involved types.

- For lists, allow extended slice assignment of differing lengths as long
as the step is 1. (Previously, 'l[:2:1] = []' failed even though
'l[:2] = []' and 'l[:2:None] = []' do not.)

- Implement extended slicing for buffer, array, structseq, mmap and
UserString.UserString.

- Implement slice-object support (but not non-step-1 slice assignment) for
UserString.MutableString.

- Add tests for all new functionality.
/external/python/cpython2/Lib/test/list_tests.py
7ccbca93a27e22f0b06316b0d9760fbf7b19cbda 04-Oct-2006 Armin Rigo <arigo@tunes.org> Forward-port of r52136,52138: a review of overflow-detecting code.

* unified the way intobject, longobject and mystrtoul handle
values around -sys.maxint-1.

* in general, trying to entierely avoid overflows in any computation
involving signed ints or longs is extremely involved. Fixed a few
simple cases where a compiler might be too clever (but that's all
guesswork).

* more overflow checks against bad data in marshal.c.

* 2.5 specific: fixed a number of places that were still confusing int
and Py_ssize_t. Some of them could potentially have caused
"real-world" breakage.

* list.pop(x): fixing overflow issues on x was messy. I just reverted
to PyArg_ParseTuple("n"), which does the right thing. (An obscure
test was trying to give a Decimal to list.pop()... doesn't make
sense any more IMHO)

* trying to write a few tests...
/external/python/cpython2/Lib/test/list_tests.py
a710b331daee9e79ca90395feb6ce8c552e00568 21-Aug-2005 Raymond Hettinger <python@rcn.com> SF bug #1242657: list(obj) can swallow KeyboardInterrupt

Fix over-aggressive PyErr_Clear(). The same code fragment appears in
various guises in list.extend(), map(), filter(), zip(), and internally
in PySequence_Tuple().
/external/python/cpython2/Lib/test/list_tests.py
7355e8133d3b03b11fd3d3b1d83e071c5fd9873e 21-Mar-2005 Walter Dörwald <walter@livinglogic.de> Add list tests that ensure that remove() removes the first occurrence.
(Copied from test_deque.py as suggested by Jim Jewett in SF bug #1166274)
/external/python/cpython2/Lib/test/list_tests.py
5ea7e31076ad80af028d6cb0fa5d4e17f2b467fa 30-Sep-2004 Raymond Hettinger <python@rcn.com> Improve test coverage.
/external/python/cpython2/Lib/test/list_tests.py
bcab2b25f9bf4024ed10319cf65394d44aa9b023 29-Sep-2004 Raymond Hettinger <python@rcn.com> Improve test coverage.
/external/python/cpython2/Lib/test/list_tests.py
f076953eb13caf629c81c3656cc0f178c7a91b1d 13-Aug-2004 Neal Norwitz <nnorwitz@gmail.com> SF patch #1005778, Fix seg fault if list object is modified during list.index()

Backport candidate
/external/python/cpython2/Lib/test/list_tests.py
130189271544cd1e2cd5687ead7bb31ff48a8e0a 18-Jan-2004 Tim Peters <tim.peters@gmail.com> For whatever reason, these files had \r\r\n line endings on Windows,
meaning they must have been checked in to CVS from a Linuxish box with
Windowish \r\n line endings to begin with.
/external/python/cpython2/Lib/test/list_tests.py
1dde95dffa44c7ddc4eee7b21cc44274d3e3effe 08-Dec-2003 Walter Dörwald <walter@livinglogic.de> Move list and tuple tests from test_types.py to their own scripts:
test_tuple.py and test_list.py. Common tests for tuple, list and UserList
are shared (in seq_tests.py and list_tests.py). Port tests to PyUnit.
(From SF patch #736962)
/external/python/cpython2/Lib/test/list_tests.py