summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* I had the inheritance cycle stuff backwards. Oops!Michael W. Hudson2002-11-271-4/+6
* SF Patch 643443. Added dict.fromkeys(iterable, value=None), a classRaymond Hettinger2002-11-271-0/+56
* Initialize a variable. Hope this makes things work for Guido.Michael W. Hudson2002-11-261-1/+1
* This is my patch:Michael W. Hudson2002-11-261-34/+277
* A tweaked version of Jeremy's patch #642489, to produce better errorGuido van Rossum2002-11-251-4/+138
* Add unidata_version. Bump generator version number.Martin v. Löwis2002-11-251-1/+1
* Regenerate from Unicode 3.2.0 to include all First/Last ranges.Martin v. Löwis2002-11-241-108/+77
* Simplify use of NB_BINOP and NB_TERNOP by making them do the pointerNeil Schemenauer2002-11-241-15/+15
* Remove special handling of str and unicode in PyNumber_InPlaceRemainder. TheyNeil Schemenauer2002-11-241-9/+2
* Patch #642500 with slight modifications: allow keyword arguments inJust van Rossum2002-11-231-5/+7
* Remove MALLOC_ZERO_RETURNS_NULL.Martin v. Löwis2002-11-231-2/+0
* Fix --disable-unicode compilation problems.Martin v. Löwis2002-11-211-0/+4
* float_int(): Some systems raise an exception if a double is cast toTim Peters2002-11-211-14/+16
* Change int() so that passing a string, unicode, float or long argumentWalter Dörwald2002-11-193-24/+45
* Add nb_remainder (i.e. __mod__) slot to unicode type. Fixes SF bug #615506.Neil Schemenauer2002-11-181-2/+21
* Add nb_remainder (i.e. __mod__) slot to str type. Fixes SF bug #615506.Neil Schemenauer2002-11-181-2/+22
* Improve exception message raised by PyFloat_AsDouble if the object does notNeil Schemenauer2002-11-181-2/+6
* str and unicode objects now have a __mod__ slot so don't special case them inNeil Schemenauer2002-11-181-6/+0
* Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makesNeil Schemenauer2002-11-171-7/+0
* Repaired illegal syntax most compilers probably let slide (but MSVCTim Peters2002-11-141-1/+1
* Use the new C3 MRO algorithm, implemented by Samuele Pedroni (SF patchGuido van Rossum2002-11-141-74/+105