| Commit message (Expand) | Author | Age | Files | Lines |
* | Add one more assert that indirectly interlocking conditions are consistent | Tim Peters | 2002-03-31 | 1 | -0/+1 |
|
|
* | Fixed an error in a new assert. | Tim Peters | 2002-03-31 | 1 | -1/+1 |
|
|
* | Fixed a typo in a new comment. | Tim Peters | 2002-03-31 | 1 | -1/+1 |
|
|
* | _PyMalloc_Free(): As was already done for _PyMalloc_Malloc, rearranged | Tim Peters | 2002-03-31 | 1 | -37/+47 |
|
|
* | Added a long-overdue comment block giving an overview of pool operations | Tim Peters | 2002-03-31 | 1 | -3/+60 |
|
|
* | It's once again thought safe to call the pymalloc free/realloc with an | Tim Peters | 2002-03-30 | 1 | -14/+27 |
|
|
* | new_arena(): In error cases, reset the number of available pools to 0. | Tim Peters | 2002-03-30 | 1 | -0/+1 |
|
|
* | Changed the #-of-arenas counters to uints -- no need to be insane about | Tim Peters | 2002-03-30 | 1 | -10/+11 |
|
|
* | Eliminate DONT_SHARE_SHORT_STRINGS. | Tim Peters | 2002-03-30 | 1 | -12/+2 |
|
|
* | Turns out the off_t macro isn't used anymore, so got rid of it. | Tim Peters | 2002-03-30 | 1 | -3/+0 |
|
|
* | Now that we're no longer linking arenas together, there's no need to | Tim Peters | 2002-03-30 | 1 | -25/+21 |
|
|
* | Retract the claim that this is always safe if PyMem_{Del, DEL, Free, FREE} | Tim Peters | 2002-03-30 | 1 | -0/+4 |
|
|
* | Lots of changes: | Tim Peters | 2002-03-30 | 1 | -127/+225 |
|
|
* | Remove the CACHE_HASH and INTERN_STRINGS preprocessor symbols. | Tim Peters | 2002-03-29 | 3 | -77/+8 |
|
|
* | If the GC is enabled then don't use the ob_type pointer to create a list | Neil Schemenauer | 2002-03-29 | 1 | -1/+12 |
|
|
* | Add missing "void" to function. | Neil Schemenauer | 2002-03-28 | 1 | -1/+1 |
|
|
* | This is Neil's fix for SF bug 535905 (Evil Trashcan and GC interaction). | Guido van Rossum | 2002-03-28 | 4 | -4/+4 |
|
|
* | PYMALLOC_DEBUG routines: The "check API family" gimmick was going nowhere | Tim Peters | 2002-03-28 | 1 | -62/+34 |
|
|
* | Introduce two new flag bits that can be set in a PyMethodDef method | Fred Drake | 2002-03-28 | 2 | -3/+30 |
|
|
* | Remove weakref free list. This has the side effect of fixing a memory | Neil Schemenauer | 2002-03-27 | 1 | -26/+11 |
|
|
* | Add missing methods iterkeys, itervalues and iteritems to | Walter Dörwald | 2002-03-25 | 1 | -6/+26 |
|
|
* | Fix whitespace. | Walter Dörwald | 2002-03-25 | 1 | -15/+15 |
|
|
* | _PyMalloc_DebugRealloc(): simplify decl of "fresh". | Tim Peters | 2002-03-24 | 1 | -5/+15 |
|
|
* | Minor code cleanup -- no semantic changes. | Tim Peters | 2002-03-23 | 1 | -22/+28 |
|
|
* | Grow the string buffer at a mildly exponential rate for the getc version | Neil Schemenauer | 2002-03-23 | 1 | -13/+16 |
|
|
* | Give Python a debug-mode pymalloc, much as sketched on Python-Dev. | Tim Peters | 2002-03-23 | 2 | -25/+320 |
|
|
* | Check in (hopefully) corrected version of last change. | Neil Schemenauer | 2002-03-23 | 1 | -0/+29 |
|
|
* | Just whitespace fiddling. | Tim Peters | 2002-03-23 | 1 | -10/+10 |
|
|
* | Build obmalloc.c directly instead of #include'ing from object.c. | Tim Peters | 2002-03-23 | 2 | -43/+50 |
|
|
* | Undo last commit. It's causing the tests to file. | Neil Schemenauer | 2002-03-22 | 1 | -28/+0 |
|
|
* | Remove malloc hooks. | Neil Schemenauer | 2002-03-22 | 1 | -69/+0 |
|
|
* | Disallow open()ing of directories. Closes SF bug 487277. | Neil Schemenauer | 2002-03-22 | 1 | -0/+28 |
|
|
* | Use pymalloc if it's enabled. | Neil Schemenauer | 2002-03-22 | 6 | -20/+20 |
|
|
* | Add pymalloc object memory management functions. These must be | Neil Schemenauer | 2002-03-22 | 1 | -0/+24 |
|
|
* | SF bug 533198: Complex power underflow raises exception. | Tim Peters | 2002-03-22 | 1 | -3/+9 |
|
|
* | Do not insert characters for unicode-escape decoders if the error mode | Martin v. Löwis | 2002-03-21 | 1 | -14/+24 |
|
|
* | Drop the PyCore_* memory API. | Neil Schemenauer | 2002-03-18 | 2 | -22/+37 |
|
|
* | Re-enable GC of method objects. | Neil Schemenauer | 2002-03-18 | 1 | -7/+6 |
|
|
* | Re-enable GC of iter objects. | Neil Schemenauer | 2002-03-18 | 1 | -14/+12 |
|
|
* | Simpilify PyCore_* macros by assuming the function prototypes for | Neil Schemenauer | 2002-03-18 | 1 | -57/+21 |
|
|
* | Fix for SF bug 528132 (Armin Rigo): classmethod().__get__() segfault | Guido van Rossum | 2002-03-18 | 1 | -0/+2 |
|
|
* | SF patch 530070: pydoc regression, from Martin and Guido. | Tim Peters | 2002-03-17 | 1 | -3/+19 |
|
|
* | Patch #530105: Allow file object may to be subtyped | Martin v. Löwis | 2002-03-15 | 1 | -11/+0 |
|
|
* | Patch #517521: Consider byte strings before Unicode strings | Martin v. Löwis | 2002-03-15 | 1 | -52/+60 |
|
|
* | "Fix" for SF bug #520644: __slots__ are not pickled. | Guido van Rossum | 2002-03-14 | 1 | -1/+37 |
|
|
* | Fix for SF bug #529050 - ModuleType.__new__ crash. | Guido van Rossum | 2002-03-12 | 1 | -7/+19 |
|
|
* | Change Windows file.truncate() to (a) restore the original file position, | Tim Peters | 2002-03-12 | 1 | -27/+40 |
|
|
* | file_truncate(): provide full "large file" support on Windows, by | Tim Peters | 2002-03-11 | 1 | -20/+55 |
|
|
* | Bugfix candidate. | Guido van Rossum | 2002-03-10 | 1 | -1/+1 |
|
|
* | Patch #494047: removes 64-bit ?: to cope on plan9. | Martin v. Löwis | 2002-03-09 | 1 | -2/+10 |
|
|