| Commit message (Expand) | Author | Age | Files | Lines |
* | Minor improvements to the stats output dump, including adding commas to | Tim Peters | 2002-04-06 | 1 | -10/+34 |
|
|
* | - Changed new-style class instantiation so that when C's __new__ | Guido van Rossum | 2002-04-06 | 1 | -0/+4 |
|
|
* | Don't inherit tp_new! This is a retraction of half of the previous | Guido van Rossum | 2002-04-05 | 1 | -1/+0 |
|
|
* | Inherit tp_new and tp_is_gc. | Guido van Rossum | 2002-04-05 | 1 | -0/+2 |
|
|
* | Repair an incomprehensible comment. | Tim Peters | 2002-04-05 | 1 | -2/+2 |
|
|
* | _PyMalloc_DebugDumpStats(): vastly improved the output, and it now | Tim Peters | 2002-04-05 | 1 | -21/+58 |
|
|
* | Widespread, but mostly in _PyMalloc_Malloc: optimize away all expensive | Tim Peters | 2002-04-05 | 1 | -40/+39 |
|
|
* | A much revised version of SF patch 514662, by Naofumi Honda. This | Guido van Rossum | 2002-04-04 | 1 | -99/+128 |
|
|
* | Clarifying code rearrangement and comments by David Abrahams. I've | Guido van Rossum | 2002-04-04 | 1 | -28/+46 |
|
|
* | _PyMalloc_Realloc(): removed a now-pointless cast. | Tim Peters | 2002-04-04 | 1 | -1/+1 |
|
|
* | _PyMalloc_{Malloc, Realloc}: Strive to meet the doc's promises about | Tim Peters | 2002-04-04 | 1 | -42/+44 |
|
|
* | As Neal pointed out, bool_print was an order of magnitude too complex. | Guido van Rossum | 2002-04-04 | 1 | -12/+1 |
|
|
* | Oops. Here are the new files. My apologies. | Guido van Rossum | 2002-04-03 | 1 | -0/+212 |
|
|
* | Add the 'bool' type and its values 'False' and 'True', as described in | Guido van Rossum | 2002-04-03 | 6 | -152/+143 |
|
|
* | Fix the names of the classmethod and staticmethod constructors as passed to | Fred Drake | 2002-04-03 | 1 | -2/+2 |
|
|
* | Fold some long lines. Delete blank initial line. | Guido van Rossum | 2002-04-03 | 1 | -4/+6 |
|
|
* | SF patch 537536 by Phillip J. Eby, fix for SF bug 535444, super() | Guido van Rossum | 2002-04-02 | 1 | -3/+7 |
|
|
* | Fixed errors in two comments. | Tim Peters | 2002-04-01 | 1 | -3/+4 |
|
|
* | Restructured my pool-management overview in terms of the three | Tim Peters | 2002-04-01 | 1 | -21/+61 |
|
|
* | New PYMALLOC_DEBUG function void _PyMalloc_DebugDumpStats(void). | Tim Peters | 2002-04-01 | 1 | -1/+97 |
|
|
* | Convert file.readinto() to stop using METH_OLDARGS & PyArg_Parse. | Neal Norwitz | 2002-04-01 | 1 | -2/+2 |
|
|
* | Use METH_VARARGS rather than METH_OLDARGS implicitly (args are ignored) | Neal Norwitz | 2002-03-31 | 1 | -1/+1 |
|
|
* | 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 |
|
|