summaryrefslogtreecommitdiffstats
path: root/Lib/test/seq_tests.py
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-118846: Fix free-threading test failures when run sequentially (GH-...Miss Islington (bot)2024-05-101-0/+1
* bpo-43413: Fix handling keyword arguments in subclasses of some buitin classe...Serhiy Storchaka2021-09-121-0/+3
* bpo-37648: Fixed minor inconsistency in some __contains__. (GH-14904)Serhiy Storchaka2019-08-041-9/+20
* bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375)Zackery Spytz2019-05-171-0/+1
* bpo-29912: Remove redundant tests in list_tests that are found in seq_tests (...Jim Fasarakis-Hilliard2017-03-271-0/+2
* Issue #23277: Remove more unused sys and os imports.Serhiy Storchaka2016-04-241-1/+0
* Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-301-0/+5
* Issue #23757: Only call the concrete list API for exact lists.Raymond Hettinger2015-05-171-0/+12
* Issue #22777: Test pickling with all protocols.Serhiy Storchaka2014-12-151-3/+4
* Issue #14288: Serialization support for builtin iterators.Kristján Valur Jónsson2012-04-031-0/+7
* 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
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-3/+3
* use assert[Not]In where appropriateEzio Melotti2010-01-231-5/+5
* Closes release blocker #3627.Neal Norwitz2008-08-241-5/+7
* Manual forward port of 64962 - use PyObject_HashNotImplemented as a tp_hash l...Nick Coghlan2008-07-151-2/+1
* Move itertools izip() code to builtins as zip(). Complete the renaming.Raymond Hettinger2008-03-131-1/+1
* Issues 2186 and 2187. Move map() from itertools to builtins.Raymond Hettinger2008-03-131-2/+2
* Merged revisions 60990-61002 via svnmerge fromChristian Heimes2008-02-231-1/+0
* Issue 2025: Add index() and count() methods to tuple so that it will followRaymond Hettinger2008-02-071-0/+62
* Merged revisions 58947-59004 via svnmerge fromGuido van Rossum2007-11-161-0/+7
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-301-2/+0
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-5/+5
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-6/+6
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-15/+15
* Whitespace normalization (via reindent.py).Tim Peters2005-08-261-1/+1
* patch [ 1141428 ] more __contains__ testsGeorg Brandl2005-08-241-0/+27
* Add tests for tuple, list and UserList that initialize the object fromWalter Dörwald2005-03-221-0/+90
* Improve test coverage.Raymond Hettinger2004-09-301-0/+35
* Move list and tuple tests from test_types.py to their own scripts:Walter Dörwald2003-12-081-0/+171