summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Recursive compare machinery: The code that intended to exempt tuplesTim Peters2003-01-201-9/+14
* SF # 669553, fix memory (ref) leaksNeal Norwitz2003-01-191-1/+8
* SF patch #664192 bug #661913: inconsistent error messages between stringRaymond Hettinger2003-01-151-2/+2
* Fix SF bug #667147, Segmentation fault printing str subclassNeal Norwitz2003-01-131-3/+16
* Fix charmapencode_lookup(), so that a None value in the mappingWalter Dörwald2003-01-081-0/+2
* Remove variable owned from PyUnicode_FromEncodedObject, which is unusedWalter Dörwald2003-01-081-7/+0
* Fix for SF bug #642358: only provide a new with a __dict__ orGuido van Rossum2003-01-071-4/+24
* Add a refinement to SLOT1BINFULL() that fixes the problem reported inGuido van Rossum2003-01-061-1/+36
* GvR's idea to use memset() for the most common special case of repeatingRaymond Hettinger2003-01-061-1/+5
* Optimize string_repeat.Raymond Hettinger2003-01-061-2/+11
* PyCFunction_Call(): Combined two switch cases w/ identical bodies.Tim Peters2003-01-051-4/+2
* SF Patch #661440: Refactor and streamline PyCFunction_CallRaymond Hettinger2003-01-041-31/+41
* Grammatical fix in comment.Greg Ward2003-01-031-1/+1
* Allow PyFile_GetLine() to return Unicode objects. Fixes #660165.Martin v. Löwis2003-01-031-1/+24
* Allow list sort's comparison function to explicitly be None. See SF patchSkip Montanaro2003-01-021-1/+4
* Merge to trunk from release branch:Guido van Rossum2002-12-311-0/+1
* Fix an out-of-bound index in pmerge() discovered by Zooko (SF bugGuido van Rossum2002-12-311-1/+2
* Since the *_Init() are private, prefix with _, suggested by SkipNeal Norwitz2002-12-312-2/+2
* SF #561244, Micro optimizationsNeal Norwitz2002-12-302-19/+36
* Consolidate the int and long sequence repeat code. Before the change,Neil Schemenauer2002-12-302-65/+0
* Always try nb_* slots before trying sq_concat, sq_inplace_concat, sq_repeat,Neil Schemenauer2002-12-301-50/+128
* Patch for bug #659709: bogus computation of float lengthMarc-André Lemburg2002-12-292-16/+37
* SF patch #659536: Use PyArg_UnpackTuple where possible.Raymond Hettinger2002-12-298-12/+12
* SF Bug 645777: list.extend() works with any iterable and is no longerRaymond Hettinger2002-12-291-1/+1
* Fix bug introduced by SF patch #643835, Set Next Statement for Python debuggersNeal Norwitz2002-12-191-4/+12
* Undefine MIN and MAX before definingNeal Norwitz2002-12-181-0/+2
* SF # 654974, fix unchecked return values in structseqNeal Norwitz2002-12-181-2/+6
* * Objects/fileobject.cGustavo Niemeyer2002-12-171-1/+1
* This is Richie Hindle's patchMichael W. Hudson2002-12-171-1/+259
* Fixed bugGustavo Niemeyer2002-12-161-3/+30
* Punctuation fix.Raymond Hettinger2002-12-141-2/+2
* Tighten the tests for assignment to __bases__: disallow empty tuple.Guido van Rossum2002-12-131-0/+6
* Patch #650653: Raise always value error if the table is not 256 bytes long.Martin v. Löwis2002-12-121-6/+6
* Change issubclass() so that recursive tuples (directly or indirectlyWalter Dörwald2002-12-122-5/+6
* Enhance issubclass() and PyObject_IsSubclass() so that a tuple isWalter Dörwald2002-12-122-28/+49
* Constify char* API. Fixes #651363. 2.2 candidate.Martin v. Löwis2002-12-111-3/+3
* Patch #650834: Document 'U' in file mode, remove stale variables.Martin v. Löwis2002-12-111-5/+1
* Update comments about the performance of xrange().Raymond Hettinger2002-12-111-2/+2
* SF 548651: Fix the METH_CLASS implementation.Tim Peters2002-12-093-4/+75
* slot_nb_nonzero(): Another leak uncovered by the sandbox datetimeTim Peters2002-12-071-28/+27
* Fix typo in abstract.c which caused __rpow__ to not be invoked.Raymond Hettinger2002-12-071-1/+1
* Remove assumption that cls is a subclass of dict.Raymond Hettinger2002-12-071-7/+1
* slot_tp_hash(): In the normal path, this leaked a reference to theTim Peters2002-12-061-3/+3
* Patch #614055: Support OpenVMS.Martin v. Löwis2002-12-061-1/+5
* The final tweaks before closingMichael W. Hudson2002-12-051-20/+23
* Replace BadInternalCall with TypeError. Add a test case. Fix whitespace.Raymond Hettinger2002-12-041-2/+3
* Add missing decrefNeal Norwitz2002-11-271-0/+1
* Nudge getting __module__ and __name__ for new-style classes so thatMichael W. Hudson2002-11-271-17/+24
* I don't know why staring at the email to python-checkins made meMichael W. Hudson2002-11-271-9/+14
* Readjustments to the way we cope with exceptions from subclasses'Michael W. Hudson2002-11-271-10/+32