| Commit message (Expand) | Author | Age | Files | Lines |
* | Validate that __length_hint__ returns a usable result. | Raymond Hettinger | 2009-02-03 | 1 | -1/+1 |
|
|
* | Issue 1242657: list(obj) can swallow KeyboardInterrupt. | Raymond Hettinger | 2009-02-02 | 3 | -14/+27 |
|
|
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 33 | -72/+72 |
|
|
* | Remove exception for non-NULL tp_compare that was introduced in r69188. | Mark Dickinson | 2009-02-01 | 1 | -7/+0 |
|
|
* | Issue #1717, continued: remove PyObject_Compare and Py_CmpToRich declarations | Mark Dickinson | 2009-02-01 | 2 | -32/+18 |
|
|
* | Issue #1717: remove the cmp builtin function, the C-API functions | Mark Dickinson | 2009-02-01 | 3 | -117/+1 |
|
|
* | Issue #1717, stage 2: remove uses of tp_compare in Modules and most | Mark Dickinson | 2009-02-01 | 4 | -41/+119 |
|
|
* | fix indentation again | Benjamin Peterson | 2009-01-31 | 1 | -2497/+2497 |
|
|
* | detabify Objects/unicodeobject.c | Benjamin Peterson | 2009-01-31 | 1 | -3092/+3092 |
|
|
* | Issue #4707: round(x, n) now returns an integer when x is an integer. | Mark Dickinson | 2009-01-28 | 1 | -20/+128 |
|
|
* | Merged revisions 68974-68975 via svnmerge from | Mark Dickinson | 2009-01-26 | 1 | -8/+9 |
|
|
* | Merged revisions 68947 via svnmerge from | Mark Dickinson | 2009-01-25 | 1 | -1/+1 |
|
|
* | Merged revisions 68890 via svnmerge from | Mark Dickinson | 2009-01-24 | 1 | -23/+20 |
|
|
* | Some minor cleanups in PyLong_FromLong: | Mark Dickinson | 2009-01-24 | 1 | -12/+15 |
|
|
* | Merged revisions 68750,68776-68777,68811,68842,68859 via svnmerge from | Benjamin Peterson | 2009-01-23 | 1 | -1/+1 |
|
|
* | Issue 4842, patch 2/2: int('3L') should be invalid in Python 3.x. | Mark Dickinson | 2009-01-20 | 1 | -2/+0 |
|
|
* | Merged revisions 68633,68648,68667,68706,68718,68720-68721,68724-68727,68739 ... | Benjamin Peterson | 2009-01-18 | 1 | -1/+1 |
|
|
* | Merged revisions 68568,68665 via svnmerge from | Benjamin Peterson | 2009-01-18 | 1 | -2/+2 |
|
|
* | Replace PyNumber_Int with PyNumber_Long. | Mark Dickinson | 2009-01-17 | 1 | -1/+1 |
|
|
* | Issue #4838: When a module is deallocated, free the memory backing the option... | Antoine Pitrou | 2009-01-17 | 1 | -0/+2 |
|
|
* | Remove attempted long->int conversions in py3k version of float.as_integer_ra... | Mark Dickinson | 2009-01-17 | 1 | -6/+0 |
|
|
* | Issue #4910, patch 3/3: rename nb_long to nb_reserved | Mark Dickinson | 2009-01-17 | 7 | -10/+6 |
|
|
* | Issue 4910, patch 2 of (probably) 3: pave the way for renaming of | Mark Dickinson | 2009-01-15 | 4 | -13/+4 |
|
|
* | Issue #4935: The overflow checking code in the expandtabs() method common | Antoine Pitrou | 2009-01-13 | 1 | -37/+30 |
|
|
* | Merged revisions 68560 via svnmerge from | Amaury Forgeot d'Arc | 2009-01-12 | 3 | -2/+19 |
|
|
* | Issue #4910 (1st patch of a series): fix int() and the corresponding | Mark Dickinson | 2009-01-12 | 1 | -13/+1 |
|
|
* | Issue #4916: fix little-endian UTF-16 decoding bug on big-endian UCS-4 builds... | Antoine Pitrou | 2009-01-11 | 1 | -8/+16 |
|
|
* | Merged revisions 68381 via svnmerge from | Benjamin Peterson | 2009-01-11 | 3 | -11/+16 |
|
|
* | Issue #4910: replace "long" with "int" in docstring for __long__ slot and | Mark Dickinson | 2009-01-10 | 1 | -1/+1 |
|
|
* | Issue #4868: utf-8, utf-16 and latin1 decoding are now 2x to 4x faster. The | Antoine Pitrou | 2009-01-10 | 1 | -24/+207 |
|
|
* | Reduce the size of the _PyLong_DigitValue table. | Raymond Hettinger | 2009-01-09 | 1 | -3/+3 |
|
|
* | Issue #4822: fix messy indentation in memoryobject.c/.h, before we may backpo... | Antoine Pitrou | 2009-01-03 | 1 | -432/+431 |
|
|
* | Issue #4580: slicing of memoryviews when itemsize != 1 is wrong. | Antoine Pitrou | 2009-01-03 | 2 | -69/+64 |
|
|
* | Remove traces of Py_InitModule*. | Georg Brandl | 2009-01-02 | 1 | -2/+2 |
|
|
* | Merged revisions 68128 via svnmerge from | Antoine Pitrou | 2009-01-01 | 2 | -20/+45 |
|
|
* | Recorded merge of revisions 68051 via svnmerge from | Nick Coghlan | 2008-12-30 | 1 | -0/+11 |
|
|
* | #4759: allow None as first argument of bytearray.translate(), for consistency... | Georg Brandl | 2008-12-28 | 1 | -16/+25 |
|
|
* | Remove confusing error message in bytes.translate. | Georg Brandl | 2008-12-27 | 1 | -5/+0 |
|
|
* | Revert unwanted function name change introduced by r67939. | Alexandre Vassalotti | 2008-12-27 | 1 | -1/+1 |
|
|
* | Fixed incompatible pointer warning. | Hirokazu Yamamoto | 2008-12-27 | 1 | -1/+1 |
|
|
* | Fix bogus assertion. | Alexandre Vassalotti | 2008-12-27 | 1 | -1/+1 |
|
|
* | Optimize built-in unicode codecs by avoiding unnecessary copying. | Alexandre Vassalotti | 2008-12-27 | 1 | -50/+58 |
|
|
* | Fix wrong bytes type conversion in PyUnicode_AsUnicodeEscapeString. | Alexandre Vassalotti | 2008-12-27 | 1 | -15/+4 |
|
|
* | Merged revisions 67932 via svnmerge from | Alexandre Vassalotti | 2008-12-27 | 1 | -28/+30 |
|
|
* | Merged revisions 67654,67676-67677,67681,67692,67725,67761,67784-67785,67787-... | Benjamin Peterson | 2008-12-21 | 1 | -0/+3 |
|
|
* | Issue #3106: Speedup some comparisons. This also removes the last call | Antoine Pitrou | 2008-12-20 | 2 | -73/+88 |
|
|
* | Add missing Py_CHARMASK when calling isspace(). | Kristján Valur Jónsson | 2008-12-18 | 1 | -2/+2 |
|
|
* | Forward merge of r67822 to py3k: add bit_length method to int. | Mark Dickinson | 2008-12-17 | 1 | -0/+71 |
|
|
* | Issue #4569: Interpreter crash when mutating a memoryview with an item size l... | Antoine Pitrou | 2008-12-07 | 1 | -93/+105 |
|
|
* | Issue #4509: bugs in bytearray with exports (buffer protocol) | Antoine Pitrou | 2008-12-06 | 1 | -11/+31 |
|
|