summaryrefslogtreecommitdiffstats
path: root/Lib/test/list_tests.py
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-120384: Fix array-out-of-bounds crash in `list_ass_subscript` (GH-1...Miss Islington (bot)2024-06-211-0/+8
* gh-116303: Skip tests if C recursion limit is unavailable (GH-117368)Erlend E. Aasland2024-04-081-2/+2
* gh-115733: Fix crash involving exhausted list iterator (#115740)Sam Gross2024-02-201-0/+5
* GH-91079: Rename C_RECURSION_LIMIT to Py_C_RECURSION_LIMIT (#108507)Victor Stinner2023-09-081-2/+2
* GH-107263: Increase C stack limit for most functions, except `_PyEval_EvalFra...Mark Shannon2023-08-041-2/+2
* gh-84623: Remove unused imports in tests (#93772)Victor Stinner2022-06-131-2/+1
* bpo-41055: Remove outdated tests for the tp_print slot. (GH-21006)Serhiy Storchaka2020-06-211-14/+0
* bpo-37648: Fixed minor inconsistency in some __contains__. (GH-14904)Serhiy Storchaka2019-08-041-0/+15
* Fix a misnamed test for lists. (GH-11933)Serhiy Storchaka2019-02-191-1/+7
* bpo-32137: The repr of deeply nested dict now raises a RecursionError (#4570)Serhiy Storchaka2017-12-031-3/+4
* bpo-29912: Remove redundant tests in list_tests that are found in seq_tests (...Jim Fasarakis-Hilliard2017-03-271-63/+2
* Issue #1621: Avoid signed overflow in list and tuple operationsMartin Panter2016-07-251-1/+13
* Issue #26492: Added additional tests for exhausted iterators of mutable seque...Serhiy Storchaka2016-03-301-0/+11
* Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.Yury Selivanov2015-07-031-1/+1
* Issue #22077: Improve index error messages for bytearrays, bytes, lists, andTerry Jan Reedy2014-08-021-0/+10
* Revert "Accept None as start and stop parameters for list.index() and tuple.i...Petri Lehtinen2011-11-061-7/+0
|\
| * Revert "Accept None as start and stop parameters for list.index() and tuple.i...Petri Lehtinen2011-11-061-7/+0
* | Accept None as start and stop parameters for list.index() and tuple.index().Petri Lehtinen2011-11-051-0/+7
|\ \ | |/
| * Accept None as start and stop parameters for list.index() and tuple.index()Petri Lehtinen2011-11-051-0/+7
* | Merge from 3.2 (#10318, #12255, #12043, #12417 and other fixes)Éric Araujo2011-07-291-11/+5
|\ \ | |/
| * Remove duplicates of cmp_to_key (#12542, reviewed by Raymond Hettinger)Éric Araujo2011-07-261-11/+5
* | rewrite with assertIsBenjamin Peterson2011-02-251-2/+1
* | Issue #10516: adding list.clear() and list.copy() methodsEli Bendersky2011-02-251-0/+42
|/
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-2/+2
* Merged revisions 81224 via svnmerge fromVictor Stinner2010-05-161-6/+4
* Merged revisions 77821 via svnmerge fromMark Dickinson2010-01-291-0/+3
* Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ fromMark Dickinson2009-01-271-3/+19
* Issue 3689: list_reverseiterator should support __length_hint__ instead of _...Raymond Hettinger2008-12-021-0/+2
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-4/+4
* Merged revisions 60990-61002 via svnmerge fromChristian Heimes2008-02-231-1/+0
* Issue #1771: Remove cmp parameter from list.sort() and builtin.sorted().Raymond Hettinger2008-01-301-5/+12
* Merged revisions 59376-59406 via svnmerge fromChristian Heimes2007-12-081-2/+0
* Removed PyInt_GetMax and sys.maxintChristian Heimes2007-12-041-2/+2
* Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge fromThomas Wouters2007-09-191-0/+5
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-301-2/+0
* Merge the trunk changes in. Breaks socket.ssl for now.Thomas Wouters2007-08-281-0/+2
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-1/+1
* Don't specify an encoding, let open figure out anWalter Dörwald2007-05-241-2/+2
* Fix list_test.py::test_print(): Read and write theWalter Dörwald2007-05-241-2/+2
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-3/+3
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-1/+1
* Two tests fixed with one fix.Guido van Rossum2007-02-091-1/+1
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-1/+1
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-11/+11
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-3/+0
* Remove usage of backticks.Brett Cannon2006-08-251-1/+1
* SF bug #1242657: list(obj) can swallow KeyboardInterruptRaymond Hettinger2005-08-211-0/+9
* Add list tests that ensure that remove() removes the first occurrence.Walter Dörwald2005-03-211-0/+20
* Improve test coverage.Raymond Hettinger2004-09-301-33/+0
* Improve test coverage.Raymond Hettinger2004-09-291-2/+101