| Commit message (Expand) | Author | Age | Files | Lines |
* | http://bugs.python.org/issue5544 | Kristján Valur Jónsson | 2009-03-24 | 1 | -13/+100 |
|
|
* | Merged revisions 70558,70561-70563,70568-70571 via svnmerge from | Benjamin Peterson | 2009-03-24 | 1 | -2/+2 |
|
|
* | Merged revisions 70555 via svnmerge from | Benjamin Peterson | 2009-03-23 | 1 | -6/+124 |
|
|
* | Merged revisions 70546 via svnmerge from | Antoine Pitrou | 2009-03-23 | 3 | -0/+190 |
|
|
* | Merged revisions 70523 via svnmerge from | Lars Gustäbel | 2009-03-22 | 1 | -0/+25 |
|
|
* | - Issue #5463: In struct module, remove deprecated overflow wrapping | Mark Dickinson | 2009-03-21 | 1 | -11/+1 |
|
|
* | stringio doesn't have an encoding | Benjamin Peterson | 2009-03-21 | 1 | -1/+1 |
|
|
* | Forward port r70470 and r70473 for OrderedDict to use a doubly linked list. | Raymond Hettinger | 2009-03-19 | 1 | -0/+7 |
|
|
* | Issue #4258: Make it possible to use 30-bit digits for PyLongs: | Mark Dickinson | 2009-03-18 | 2 | -10/+44 |
|
|
* | Merged revisions 70444 via svnmerge from | Mark Dickinson | 2009-03-18 | 1 | -0/+22 |
|
|
* | Merged revisions 70439 via svnmerge from | Mark Dickinson | 2009-03-17 | 1 | -1/+97 |
|
|
* | Merged revisions 70430 via svnmerge from | Mark Dickinson | 2009-03-17 | 1 | -0/+6 |
|
|
* | Merged revisions 70364 via svnmerge from | Eric Smith | 2009-03-14 | 1 | -3/+33 |
|
|
* | Merged revisions 70356 via svnmerge from | Antoine Pitrou | 2009-03-14 | 1 | -1/+77 |
|
|
* | Issue #5016: FileIO.seekable() could return False if the file position | Antoine Pitrou | 2009-03-13 | 1 | -0/+10 |
|
|
* | The error detection code in FileIO.close() could fail to reflect the `errno` ... | Antoine Pitrou | 2009-03-13 | 1 | -0/+15 |
|
|
* | Issue #5392: when a very low recursion limit was set, the interpreter would | Antoine Pitrou | 2009-03-13 | 1 | -0/+42 |
|
|
* | For collections.deque() objects, expose the maxlen parameter as a read-only a... | Raymond Hettinger | 2009-03-10 | 1 | -0/+10 |
|
|
* | Small optimization for corner case where maxlen==0. | Raymond Hettinger | 2009-03-10 | 1 | -1/+18 |
|
|
* | give TextIOWrapper a repr that tells you the encoding | Benjamin Peterson | 2009-03-09 | 1 | -0/+6 |
|
|
* | Add notice about strange behaviour of the bigmem tests | Antoine Pitrou | 2009-03-07 | 1 | -0/+4 |
|
|
* | Issue #3700: make test_bigmem py3k-compatible, and add bytes/bytearray tests | Antoine Pitrou | 2009-03-07 | 2 | -278/+395 |
|
|
* | Issue #5433: Excessive newline detection optimization in IncrementalNewlineDe... | Antoine Pitrou | 2009-03-06 | 1 | -0/+13 |
|
|
* | Issue #5334: array.fromfile() failed to insert values when EOFError was raised. | Hirokazu Yamamoto | 2009-03-06 | 1 | -2/+1 |
|
|
* | Merged revisions 70193 via svnmerge from | Hirokazu Yamamoto | 2009-03-05 | 1 | -15/+5 |
|
|
* | Merged revisions 70189 via svnmerge from | Hirokazu Yamamoto | 2009-03-05 | 1 | -1/+33 |
|
|
* | rename | Benjamin Peterson | 2009-03-05 | 1 | -3/+3 |
|
|
* | fix #4862 in _pyio: reset the decoder on seek(0) | Benjamin Peterson | 2009-03-05 | 1 | -0/+2 |
|
|
* | Fix for issue #5408. This only enables test_osx_env when the current build | Ronald Oussoren | 2009-03-04 | 1 | -1/+3 |
|
|
* | Fix failures introduced by buggy merge (1) | Antoine Pitrou | 2009-03-04 | 1 | -2/+2 |
|
|
* | merge the io-c branch: C implementation of the io module | Benjamin Peterson | 2009-03-04 | 9 | -502/+1404 |
|
|
* | Additional test for __reduce__. | Raymond Hettinger | 2009-03-03 | 1 | -0/+8 |
|
|
* | Add another test. | Raymond Hettinger | 2009-03-03 | 1 | -0/+9 |
|
|
* | Give dict views a helpful __repr__. | Raymond Hettinger | 2009-03-03 | 1 | -3/+3 |
|
|
* | ignore the coding cookie in compile(), exec(), and eval() if the source is a ... | Benjamin Peterson | 2009-03-02 | 2 | -3/+9 |
|
|
* | Merged revisions 70107 via svnmerge from | Benjamin Peterson | 2009-03-02 | 1 | -0/+19 |
|
|
* | PEP 372: OrderedDict() | Raymond Hettinger | 2009-03-02 | 1 | -3/+194 |
|
|
* | Merged revisions 70056 via svnmerge from | Hirokazu Yamamoto | 2009-02-28 | 1 | -0/+28 |
|
|
* | Merged revisions 70052 via svnmerge from | Hirokazu Yamamoto | 2009-02-28 | 1 | -0/+38 |
|
|
* | Merged revisions 69811,69947 via svnmerge from | Benjamin Peterson | 2009-02-26 | 1 | -0/+6 |
|
|
* | http://bugs.python.org/issue4715 | Jeffrey Yasskin | 2009-02-25 | 1 | -5/+5 |
|
|
* | range() should have been registered as a Sequence. | Raymond Hettinger | 2009-02-24 | 1 | -0/+2 |
|
|
* | Port r69837: Fix keyword arguments for itertools.count(). Step arg without a ... | Raymond Hettinger | 2009-02-21 | 1 | -0/+4 |
|
|
* | Merged revisions 69846 via svnmerge from | Mark Dickinson | 2009-02-21 | 6 | -9/+9 |
|
|
* | Merged revisions 69415,69591,69593 via svnmerge from | Benjamin Peterson | 2009-02-20 | 1 | -4/+4 |
|
|
* | fix None errno #5312 | Benjamin Peterson | 2009-02-20 | 1 | -1/+1 |
|
|
* | #5306: Fix compilation on Windows by properly merging change 69495. | Amaury Forgeot d'Arc | 2009-02-19 | 1 | -2/+2 |
|
|
* | Inline coefficients in gamma(). Add reflection formula. Add comments. | Raymond Hettinger | 2009-02-19 | 1 | -10/+18 |
|
|
* | Add some cross-references to the docs. Simplify the python code equivalent f... | Raymond Hettinger | 2009-02-19 | 1 | -3/+3 |
|
|
* | Merged revisions 69576,69579-69580,69589,69619-69620,69633,69703-69704,69728-... | Benjamin Peterson | 2009-02-19 | 2 | -1/+17 |
|
|