| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. | Yury Selivanov | 2015-07-03 | 1 | -1/+1 |
|
|
* | Issue #22077: Improve index error messages for bytearrays, bytes, lists, and | Terry Jan Reedy | 2014-08-02 | 1 | -0/+10 |
|
|
* | Revert "Accept None as start and stop parameters for list.index() and tuple.i... | Petri Lehtinen | 2011-11-06 | 1 | -7/+0 |
|\ |
|
| * | Revert "Accept None as start and stop parameters for list.index() and tuple.i... | Petri Lehtinen | 2011-11-06 | 1 | -7/+0 |
|
|
* | | Accept None as start and stop parameters for list.index() and tuple.index(). | Petri Lehtinen | 2011-11-05 | 1 | -0/+7 |
|\ \
| |/ |
|
| * | Accept None as start and stop parameters for list.index() and tuple.index() | Petri Lehtinen | 2011-11-05 | 1 | -0/+7 |
|
|
* | | Merge from 3.2 (#10318, #12255, #12043, #12417 and other fixes) | Éric Araujo | 2011-07-29 | 1 | -11/+5 |
|\ \
| |/ |
|
| * | Remove duplicates of cmp_to_key (#12542, reviewed by Raymond Hettinger) | Éric Araujo | 2011-07-26 | 1 | -11/+5 |
|
|
* | | rewrite with assertIs | Benjamin Peterson | 2011-02-25 | 1 | -2/+1 |
|
|
* | | Issue #10516: adding list.clear() and list.copy() methods | Eli Bendersky | 2011-02-25 | 1 | -0/+42 |
|/ |
|
* | #9424: Replace deprecated assert* methods in the Python test suite. | Ezio Melotti | 2010-11-20 | 1 | -2/+2 |
|
|
* | Merged revisions 81224 via svnmerge from | Victor Stinner | 2010-05-16 | 1 | -6/+4 |
|
|
* | Merged revisions 77821 via svnmerge from | Mark Dickinson | 2010-01-29 | 1 | -0/+3 |
|
|
* | Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from | Mark Dickinson | 2009-01-27 | 1 | -3/+19 |
|
|
* | Issue 3689: list_reverseiterator should support __length_hint__ instead of _... | Raymond Hettinger | 2008-12-02 | 1 | -0/+2 |
|
|
* | #2621 rename test.test_support to test.support | Benjamin Peterson | 2008-05-20 | 1 | -4/+4 |
|
|
* | Merged revisions 60990-61002 via svnmerge from | Christian Heimes | 2008-02-23 | 1 | -1/+0 |
|
|
* | Issue #1771: Remove cmp parameter from list.sort() and builtin.sorted(). | Raymond Hettinger | 2008-01-30 | 1 | -5/+12 |
|
|
* | Merged revisions 59376-59406 via svnmerge from | Christian Heimes | 2007-12-08 | 1 | -2/+0 |
|
|
* | Removed PyInt_GetMax and sys.maxint | Christian Heimes | 2007-12-04 | 1 | -2/+2 |
|
|
* | Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from | Thomas Wouters | 2007-09-19 | 1 | -0/+5 |
|
|
* | Remove the simple slicing API. All slicing is now done with slice objects. | Thomas Wouters | 2007-08-30 | 1 | -2/+0 |
|
|
* | Merge the trunk changes in. Breaks socket.ssl for now. | Thomas Wouters | 2007-08-28 | 1 | -0/+2 |
|
|
* | Merged revisions 55817-55961 via svnmerge from | Guido van Rossum | 2007-06-13 | 1 | -1/+1 |
|
|
* | Don't specify an encoding, let open figure out an | Walter Dörwald | 2007-05-24 | 1 | -2/+2 |
|
|
* | Fix list_test.py::test_print(): Read and write the | Walter Dörwald | 2007-05-24 | 1 | -2/+2 |
|
|
* | Merged revisions 55007-55179 via svnmerge from | Guido van Rossum | 2007-05-07 | 1 | -3/+3 |
|
|
* | PEP 3114: rename .next() to .__next__() and add next() builtin. | Georg Brandl | 2007-04-21 | 1 | -1/+1 |
|
|
* | Two tests fixed with one fix. | Guido van Rossum | 2007-02-09 | 1 | -1/+1 |
|
|
* | Fix most trivially-findable print statements. | Guido van Rossum | 2007-02-09 | 1 | -1/+1 |
|
|
* | Rip out 'long' and 'L'-suffixed integer literals. | Guido van Rossum | 2007-01-15 | 1 | -11/+11 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -3/+0 |
|
|
* | Remove usage of backticks. | Brett Cannon | 2006-08-25 | 1 | -1/+1 |
|
|
* | SF bug #1242657: list(obj) can swallow KeyboardInterrupt | Raymond Hettinger | 2005-08-21 | 1 | -0/+9 |
|
|
* | Add list tests that ensure that remove() removes the first occurrence. | Walter Dörwald | 2005-03-21 | 1 | -0/+20 |
|
|
* | Improve test coverage. | Raymond Hettinger | 2004-09-30 | 1 | -33/+0 |
|
|
* | Improve test coverage. | Raymond Hettinger | 2004-09-29 | 1 | -2/+101 |
|
|
* | SF patch #1005778, Fix seg fault if list object is modified during list.index() | Neal Norwitz | 2004-08-13 | 1 | -0/+12 |
|
|
* | For whatever reason, these files had \r\r\n line endings on Windows, | Tim Peters | 2004-01-18 | 1 | -8/+8 |
|
|
* | Move list and tuple tests from test_types.py to their own scripts: | Walter Dörwald | 2003-12-08 | 1 | -0/+418 |
|
|