summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Add missing methods iterkeys, itervalues and iteritems toWalter Dörwald2002-03-251-6/+26
* Fix whitespace.Walter Dörwald2002-03-251-15/+15
* _PyMalloc_DebugRealloc(): simplify decl of "fresh".Tim Peters2002-03-241-5/+15
* Minor code cleanup -- no semantic changes.Tim Peters2002-03-231-22/+28
* Grow the string buffer at a mildly exponential rate for the getc versionNeil Schemenauer2002-03-231-13/+16
* Give Python a debug-mode pymalloc, much as sketched on Python-Dev.Tim Peters2002-03-232-25/+320
* Check in (hopefully) corrected version of last change.Neil Schemenauer2002-03-231-0/+29
* Just whitespace fiddling.Tim Peters2002-03-231-10/+10
* Build obmalloc.c directly instead of #include'ing from object.c.Tim Peters2002-03-232-43/+50
* Undo last commit. It's causing the tests to file.Neil Schemenauer2002-03-221-28/+0
* Remove malloc hooks.Neil Schemenauer2002-03-221-69/+0
* Disallow open()ing of directories. Closes SF bug 487277.Neil Schemenauer2002-03-221-0/+28
* Use pymalloc if it's enabled.Neil Schemenauer2002-03-226-20/+20
* Add pymalloc object memory management functions. These must beNeil Schemenauer2002-03-221-0/+24
* SF bug 533198: Complex power underflow raises exception.Tim Peters2002-03-221-3/+9
* Do not insert characters for unicode-escape decoders if the error modeMartin v. Löwis2002-03-211-14/+24
* Drop the PyCore_* memory API.Neil Schemenauer2002-03-182-22/+37
* Re-enable GC of method objects.Neil Schemenauer2002-03-181-7/+6
* Re-enable GC of iter objects.Neil Schemenauer2002-03-181-14/+12
* Simpilify PyCore_* macros by assuming the function prototypes forNeil Schemenauer2002-03-181-57/+21
* Fix for SF bug 528132 (Armin Rigo): classmethod().__get__() segfaultGuido van Rossum2002-03-181-0/+2
* SF patch 530070: pydoc regression, from Martin and Guido.Tim Peters2002-03-171-3/+19
* Patch #530105: Allow file object may to be subtypedMartin v. Löwis2002-03-151-11/+0
* Patch #517521: Consider byte strings before Unicode stringsMartin v. Löwis2002-03-151-52/+60
* "Fix" for SF bug #520644: __slots__ are not pickled.Guido van Rossum2002-03-141-1/+37
* Fix for SF bug #529050 - ModuleType.__new__ crash.Guido van Rossum2002-03-121-7/+19
* 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