summaryrefslogtreecommitdiff
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Change Windows file.truncate() to (a) restore the original file position,Tim Peters2002-03-121-27/+40
* file_truncate(): provide full "large file" support on Windows, byTim Peters2002-03-111-20/+55
* Bugfix candidate.Guido van Rossum2002-03-101-1/+1
* Patch #494047: removes 64-bit ?: to cope on plan9.Martin v. Löwis2002-03-091-2/+10
* SF bug 525705: [2.2] underflow raise OverflowException.Tim Peters2002-03-091-2/+2
* Fix leak of NotImplemented in previous checkin to PyNumber_Add().Jeremy Hylton2002-03-081-4/+6
* Fix for SF bug 516727: MyInt(2) + "3" -> NotImplementedJeremy Hylton2002-03-081-4/+3
* Guido pointed out that I was missing a couple decrefs.Michael W. Hudson2002-03-071-1/+7
* Apply (my) patch:Michael W. Hudson2002-03-061-23/+76
* A fix & test forMichael W. Hudson2002-03-051-1/+30
* Whether platform malloc(0) returns NULL has nothing to do with whetherTim Peters2002-03-021-5/+2
* _PyLong_Copy(): was creating a copy of the absolute value, but shouldTim Peters2002-03-021-1/+1
* Revert the last odd change to PyNumber_Long: the problem it was tryingTim Peters2002-03-021-10/+2
* SF patch 514641 (Naofumi Honda) - Negative ob_size of LongObjectsGuido van Rossum2002-03-012-4/+18
* %#x/%#X format conversion cleanup (see patch #450267):Andrew MacIntyre2002-02-282-63/+74
* OS/2 EMX port changes (Objects part of patch #450267):Andrew MacIntyre2002-02-263-0/+23
* Allow __doc__ to be of arbitrary type. Patch by James Henstridge,Martin v. Löwis2002-02-181-4/+16
* Patch #508038: Do not use a type as a variable name.Martin v. Löwis2002-02-161-3/+3
* Declare real and imag as read-only attributes.Guido van Rossum2002-02-081-2/+2
* Fix to the UTF-8 encoder: it failed on 0-length input strings.Marc-André Lemburg2002-02-071-6/+17
* Cosmetics.Marc-André Lemburg2002-02-061-6/+6
* Whitespace fixes.Marc-André Lemburg2002-02-061-11/+11
* Fix for the UTF-8 memory allocation bug and the UTF-8 encodingMarc-André Lemburg2002-02-061-23/+27
* Bugfix candidate.Guido van Rossum2002-02-011-1/+1
* Fix spelling mistakes. Bugfix candidates.Neal Norwitz2002-01-291-1/+1
* Updated patch #487906: Revise inline docs.Martin v. Löwis2002-01-161-28/+25
* Include <unistd.h> in Python.h. Fixes #500924.Martin v. Löwis2002-01-121-4/+0
* Implement PyObject_DelItemString. Fixes #498915.Martin v. Löwis2002-01-051-0/+18
* SF Patch #494863, file.xreadlines() should raise ValueError if file is closedNeal Norwitz2002-01-011-0/+2
* proxy_compare(): Make sure that we unwrap both objects being compared ifFred Drake2001-12-191-6/+13
* - PyType_Ready(): Initialize the ob_type field to &PyType_Type if it'sGuido van Rossum2001-12-171-0/+16
* Portability fix: Not every compiler implements the extension ofSjoerd Mullender2001-12-171-1/+1
* SF patch #493452: docstrings for staticmethod/classmethod (SkipGuido van Rossum2001-12-171-2/+41
* SF bug #493561: incorrect format string descrobject.c (Neal Norwitz)Guido van Rossum2001-12-151-2/+2
* (Merge into trunk.)Guido van Rossum2001-12-141-1/+3
* Ensure that complex() only accepts a string argument as the first arg,Fred Drake2001-12-131-1/+13
* float_floor_div: An expression like 3.//1j crashed the interpreter, orTim Peters2001-12-111-9/+12
* float_int_div(): For clarity, move this closer to the other floatTim Peters2001-12-111-16/+16
* SF bug #491415 PyDict_UpdateFromSeq2() unusedTim Peters2001-12-111-8/+2
* Make sure that when we invoke callback functions associated with weakFred Drake2001-12-101-20/+24
* Well what do you know. The Python implementation contained the sameGuido van Rossum2001-12-101-2/+2
* Fix the Python property class in a comment right.Guido van Rossum2001-12-101-22/+23
* property_descr_get(): Fix a curious bug in the property() type: whenGuido van Rossum2001-12-101-5/+5
* SF patch #491049 (David Jacobs): Small PyString_FromString optimizationGuido van Rossum2001-12-101-1/+1
* _PyTuple_Resize(): this dumped core on tuple(globals()) for me. TurnsGuido van Rossum2001-12-071-6/+8
* PyString_FromString: this requires its argument be non-NULL, but doesn'tTim Peters2001-12-061-1/+4
* Fix for #489669 (Neil Norwitz): memory leak in test_descr (unicode).Guido van Rossum2001-12-061-6/+3
* Fix memory leak in dict_to_map(), SF bug [ #485152 ] memory leak in test_scope.Jeremy Hylton2001-12-061-8/+11
* Little stuff.Jeremy Hylton2001-12-061-8/+9
* The previous checkin to clear __slots__ variables did a little bit ofGuido van Rossum2001-12-061-20/+20