| Commit message (Expand) | Author | Age | Files | Lines |
* | Squash compiler wng about signed/unsigned comparison mismatch. | Tim Peters | 2003-01-31 | 1 | -1/+1 |
|
|
* | Provide __module__ attributes for functions defined in C and Python. | Jeremy Hylton | 2003-01-31 | 2 | -6/+68 |
|
|
* | Change the treatment of positions returned by PEP293 | Walter Dörwald | 2003-01-31 | 1 | -9/+17 |
|
|
* | _PyLong_NumBits(): The definition of this was too specific to the quirky | Tim Peters | 2003-01-31 | 1 | -8/+17 |
|
|
* | Implement appropriate __getnewargs__ for all immutable subclassable builtin | Guido van Rossum | 2003-01-29 | 7 | -4/+72 |
|
|
* | Added new private API function _PyLong_NumBits. This will be used at the | Tim Peters | 2003-01-28 | 1 | -0/+35 |
|
|
* | Fix SF bug# 676155, RuntimeWarning with tp_compare | Neal Norwitz | 2003-01-28 | 1 | -1/+4 |
|
|
* | Recursive compare machinery: The code that intended to exempt tuples | Tim Peters | 2003-01-20 | 1 | -9/+14 |
|
|
* | SF # 669553, fix memory (ref) leaks | Neal Norwitz | 2003-01-19 | 1 | -1/+8 |
|
|
* | SF patch #664192 bug #661913: inconsistent error messages between string | Raymond Hettinger | 2003-01-15 | 1 | -2/+2 |
|
|
* | Fix SF bug #667147, Segmentation fault printing str subclass | Neal Norwitz | 2003-01-13 | 1 | -3/+16 |
|
|
* | Fix charmapencode_lookup(), so that a None value in the mapping | Walter Dörwald | 2003-01-08 | 1 | -0/+2 |
|
|
* | Remove variable owned from PyUnicode_FromEncodedObject, which is unused | Walter Dörwald | 2003-01-08 | 1 | -7/+0 |
|
|
* | Fix for SF bug #642358: only provide a new with a __dict__ or | Guido van Rossum | 2003-01-07 | 1 | -4/+24 |
|
|
* | Add a refinement to SLOT1BINFULL() that fixes the problem reported in | Guido van Rossum | 2003-01-06 | 1 | -1/+36 |
|
|
* | GvR's idea to use memset() for the most common special case of repeating | Raymond Hettinger | 2003-01-06 | 1 | -1/+5 |
|
|
* | Optimize string_repeat. | Raymond Hettinger | 2003-01-06 | 1 | -2/+11 |
|
|
* | PyCFunction_Call(): Combined two switch cases w/ identical bodies. | Tim Peters | 2003-01-05 | 1 | -4/+2 |
|
|
* | SF Patch #661440: Refactor and streamline PyCFunction_Call | Raymond Hettinger | 2003-01-04 | 1 | -31/+41 |
|
|
* | Grammatical fix in comment. | Greg Ward | 2003-01-03 | 1 | -1/+1 |
|
|
* | Allow PyFile_GetLine() to return Unicode objects. Fixes #660165. | Martin v. Löwis | 2003-01-03 | 1 | -1/+24 |
|
|
* | Allow list sort's comparison function to explicitly be None. See SF patch | Skip Montanaro | 2003-01-02 | 1 | -1/+4 |
|
|
* | Merge to trunk from release branch: | Guido van Rossum | 2002-12-31 | 1 | -0/+1 |
|
|
* | Fix an out-of-bound index in pmerge() discovered by Zooko (SF bug | Guido van Rossum | 2002-12-31 | 1 | -1/+2 |
|
|
* | Since the *_Init() are private, prefix with _, suggested by Skip | Neal Norwitz | 2002-12-31 | 2 | -2/+2 |
|
|
* | SF #561244, Micro optimizations | Neal Norwitz | 2002-12-30 | 2 | -19/+36 |
|
|
* | Consolidate the int and long sequence repeat code. Before the change, | Neil Schemenauer | 2002-12-30 | 2 | -65/+0 |
|
|
* | Always try nb_* slots before trying sq_concat, sq_inplace_concat, sq_repeat, | Neil Schemenauer | 2002-12-30 | 1 | -50/+128 |
|
|
* | Patch for bug #659709: bogus computation of float length | Marc-André Lemburg | 2002-12-29 | 2 | -16/+37 |
|
|
* | SF patch #659536: Use PyArg_UnpackTuple where possible. | Raymond Hettinger | 2002-12-29 | 8 | -12/+12 |
|
|
* | SF Bug 645777: list.extend() works with any iterable and is no longer | Raymond Hettinger | 2002-12-29 | 1 | -1/+1 |
|
|
* | Fix bug introduced by SF patch #643835, Set Next Statement for Python debuggers | Neal Norwitz | 2002-12-19 | 1 | -4/+12 |
|
|
* | Undefine MIN and MAX before defining | Neal Norwitz | 2002-12-18 | 1 | -0/+2 |
|
|
* | SF # 654974, fix unchecked return values in structseq | Neal Norwitz | 2002-12-18 | 1 | -2/+6 |
|
|
* | * Objects/fileobject.c | Gustavo Niemeyer | 2002-12-17 | 1 | -1/+1 |
|
|
* | This is Richie Hindle's patch | Michael W. Hudson | 2002-12-17 | 1 | -1/+259 |
|
|
* | Fixed bug | Gustavo Niemeyer | 2002-12-16 | 1 | -3/+30 |
|
|
* | Punctuation fix. | Raymond Hettinger | 2002-12-14 | 1 | -2/+2 |
|
|
* | Tighten the tests for assignment to __bases__: disallow empty tuple. | Guido van Rossum | 2002-12-13 | 1 | -0/+6 |
|
|
* | Patch #650653: Raise always value error if the table is not 256 bytes long. | Martin v. Löwis | 2002-12-12 | 1 | -6/+6 |
|
|
* | Change issubclass() so that recursive tuples (directly or indirectly | Walter Dörwald | 2002-12-12 | 2 | -5/+6 |
|
|
* | Enhance issubclass() and PyObject_IsSubclass() so that a tuple is | Walter Dörwald | 2002-12-12 | 2 | -28/+49 |
|
|
* | Constify char* API. Fixes #651363. 2.2 candidate. | Martin v. Löwis | 2002-12-11 | 1 | -3/+3 |
|
|
* | Patch #650834: Document 'U' in file mode, remove stale variables. | Martin v. Löwis | 2002-12-11 | 1 | -5/+1 |
|
|
* | Update comments about the performance of xrange(). | Raymond Hettinger | 2002-12-11 | 1 | -2/+2 |
|
|
* | SF 548651: Fix the METH_CLASS implementation. | Tim Peters | 2002-12-09 | 3 | -4/+75 |
|
|
* | slot_nb_nonzero(): Another leak uncovered by the sandbox datetime | Tim Peters | 2002-12-07 | 1 | -28/+27 |
|
|
* | Fix typo in abstract.c which caused __rpow__ to not be invoked. | Raymond Hettinger | 2002-12-07 | 1 | -1/+1 |
|
|
* | Remove assumption that cls is a subclass of dict. | Raymond Hettinger | 2002-12-07 | 1 | -7/+1 |
|
|
* | slot_tp_hash(): In the normal path, this leaked a reference to the | Tim Peters | 2002-12-06 | 1 | -3/+3 |
|
|