summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_list.py
Commit message (Collapse)AuthorAgeFilesLines
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-4/+4
|
* Fix bug 3625: test issues on 64bit windows. r=pitrouMark Hammond2008-08-231-1/+1
|
* Moved testing of builtin types out of test_builtin and into type specific ↵Benjamin Peterson2008-05-031-0/+33
| | | | modules
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+0
|
* Fix the overflow checking of list_repeat.Armin Rigo2007-10-171-0/+9
| | | | | | Introduce overflow checking into list_inplace_repeat. Backport candidate, possibly.
* Improve test coverage.Raymond Hettinger2004-09-291-3/+15
|
* Move list and tuple tests from test_types.py to their own scripts:Walter Dörwald2003-12-081-0/+25
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)