| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
* | Patch #614055: Support OpenVMS. | Martin v. Löwis | 2002-12-06 | 1 | -1/+5 |
* | The final tweaks before closing | Michael W. Hudson | 2002-12-05 | 1 | -20/+23 |
* | Replace BadInternalCall with TypeError. Add a test case. Fix whitespace. | Raymond Hettinger | 2002-12-04 | 1 | -2/+3 |
* | Add missing decref | Neal Norwitz | 2002-11-27 | 1 | -0/+1 |
* | Nudge getting __module__ and __name__ for new-style classes so that | Michael W. Hudson | 2002-11-27 | 1 | -17/+24 |
* | I don't know why staring at the email to python-checkins made me | Michael W. Hudson | 2002-11-27 | 1 | -9/+14 |
* | Readjustments to the way we cope with exceptions from subclasses' | Michael W. Hudson | 2002-11-27 | 1 | -10/+32 |