Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Revert "Accept None as start and stop parameters for list.index() and ↵ | Petri Lehtinen | 2011-11-06 | 1 | -7/+0 |
| | | | | | | tuple.index()" Issue #13340. | ||||
* | Accept None as start and stop parameters for list.index() and tuple.index() | Petri Lehtinen | 2011-11-05 | 1 | -0/+7 |
| | | | | Closes #13340. | ||||
* | Merged revisions 86596 via svnmerge from | Ezio Melotti | 2010-11-21 | 1 | -3/+3 |
| | | | | | | | | | | 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. ........ | ||||
* | use assert[Not]In where appropriate | Ezio Melotti | 2010-01-23 | 1 | -5/+5 |
| | |||||
* | Reverting the Revision: 77368. I committed Flox's big patch for tests by | Senthil Kumaran | 2010-01-08 | 1 | -4/+1 |
| | | | | mistake. ( It may come in for sure tough) | ||||
* | Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ↵ | Senthil Kumaran | 2010-01-08 | 1 | -1/+4 |
| | | | | Patch by flox | ||||
* | Security patches from Apple: prevent int overflow when allocating memory | Neal Norwitz | 2008-07-31 | 1 | -5/+7 |
| | |||||
* | Issue 2235: __hash__ is once again inherited by default, but inheritance can ↵ | Nick Coghlan | 2008-07-15 | 1 | -2/+1 |
| | | | | be blocked explicitly so that collections.Hashable remains meaningful | ||||
* | Patch #2167 from calvin: Remove unused imports | Christian Heimes | 2008-02-23 | 1 | -1/+0 |
| | |||||
* | Issue 2025: Add tuple.count() and tuple.index() to follow the ABC in ↵ | Raymond Hettinger | 2008-02-07 | 1 | -0/+62 |
| | | | | collections.Sequence. | ||||
* | Add the test from issue 1704621 (the issue itself is already fixed here). | Guido van Rossum | 2007-11-12 | 1 | -0/+7 |
| | |||||
* | Whitespace normalization (via reindent.py). | Tim Peters | 2005-08-26 | 1 | -1/+1 |
| | |||||
* | patch [ 1141428 ] more __contains__ tests | Georg Brandl | 2005-08-24 | 1 | -0/+27 |
| | |||||
* | Add tests for tuple, list and UserList that initialize the object from | Walter Dörwald | 2005-03-22 | 1 | -0/+90 |
| | | | | | | various iterables. (Copied from test_deque.py as suggested by Jim Jewett in SF bug #1166274) | ||||
* | Improve test coverage. | Raymond Hettinger | 2004-09-30 | 1 | -0/+35 |
| | |||||
* | Move list and tuple tests from test_types.py to their own scripts: | Walter Dörwald | 2003-12-08 | 1 | -0/+171 |
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) |