summaryrefslogtreecommitdiffstats
path: root/Lib/test/list_tests.py
Commit message (Collapse)AuthorAgeFilesLines
* Improve test coverage.Raymond Hettinger2004-09-301-33/+0
|
* Improve test coverage.Raymond Hettinger2004-09-291-2/+101
|
* SF patch #1005778, Fix seg fault if list object is modified during list.index()Neal Norwitz2004-08-131-0/+12
| | | | Backport candidate
* For whatever reason, these files had \r\r\n line endings on Windows,Tim Peters2004-01-181-8/+8
| | | | | meaning they must have been checked in to CVS from a Linuxish box with Windowish \r\n line endings to begin with.
* Move list and tuple tests from test_types.py to their own scripts:Walter Dörwald2003-12-081-0/+418
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)