summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Clarifying code rearrangement and comments by David Abrahams. I'veGuido van Rossum2002-04-041-28/+46
* _PyMalloc_Realloc(): removed a now-pointless cast.Tim Peters2002-04-041-1/+1
* _PyMalloc_{Malloc, Realloc}: Strive to meet the doc's promises aboutTim Peters2002-04-041-42/+44
* As Neal pointed out, bool_print was an order of magnitude too complex.Guido van Rossum2002-04-041-12/+1
* Oops. Here are the new files. My apologies.Guido van Rossum2002-04-031-0/+212
* Add the 'bool' type and its values 'False' and 'True', as described inGuido van Rossum2002-04-036-152/+143
* Fix the names of the classmethod and staticmethod constructors as passed toFred Drake2002-04-031-2/+2
* Fold some long lines. Delete blank initial line.Guido van Rossum2002-04-031-4/+6
* SF patch 537536 by Phillip J. Eby, fix for SF bug 535444, super()Guido van Rossum2002-04-021-3/+7
* Fixed errors in two comments.Tim Peters2002-04-011-3/+4
* Restructured my pool-management overview in terms of the threeTim Peters2002-04-011-21/+61
* New PYMALLOC_DEBUG function void _PyMalloc_DebugDumpStats(void).Tim Peters2002-04-011-1/+97
* Convert file.readinto() to stop using METH_OLDARGS & PyArg_Parse.Neal Norwitz2002-04-011-2/+2
* Use METH_VARARGS rather than METH_OLDARGS implicitly (args are ignored)Neal Norwitz2002-03-311-1/+1
* Add one more assert that indirectly interlocking conditions are consistentTim Peters2002-03-311-0/+1
* Fixed an error in a new assert.Tim Peters2002-03-311-1/+1
* Fixed a typo in a new comment.Tim Peters2002-03-311-1/+1
* _PyMalloc_Free(): As was already done for _PyMalloc_Malloc, rearrangedTim Peters2002-03-311-37/+47
* Added a long-overdue comment block giving an overview of pool operationsTim Peters2002-03-311-3/+60
* It's once again thought safe to call the pymalloc free/realloc with anTim Peters2002-03-301-14/+27
* new_arena(): In error cases, reset the number of available pools to 0.Tim Peters2002-03-301-0/+1
* Changed the #-of-arenas counters to uints -- no need to be insane aboutTim Peters2002-03-301-10/+11
* Eliminate DONT_SHARE_SHORT_STRINGS.Tim Peters2002-03-301-12/+2
* Turns out the off_t macro isn't used anymore, so got rid of it.Tim Peters2002-03-301-3/+0
* Now that we're no longer linking arenas together, there's no need toTim Peters2002-03-301-25/+21
* Retract the claim that this is always safe if PyMem_{Del, DEL, Free, FREE}Tim Peters2002-03-301-0/+4
* Lots of changes:Tim Peters2002-03-301-127/+225
* Remove the CACHE_HASH and INTERN_STRINGS preprocessor symbols.Tim Peters2002-03-293-77/+8
* If the GC is enabled then don't use the ob_type pointer to create a listNeil Schemenauer2002-03-291-1/+12
* Add missing "void" to function.Neil Schemenauer2002-03-281-1/+1
* This is Neil's fix for SF bug 535905 (Evil Trashcan and GC interaction).Guido van Rossum2002-03-284-4/+4
* PYMALLOC_DEBUG routines: The "check API family" gimmick was going nowhereTim Peters2002-03-281-62/+34
* Introduce two new flag bits that can be set in a PyMethodDef methodFred Drake2002-03-282-3/+30
* Remove weakref free list. This has the side effect of fixing a memoryNeil Schemenauer2002-03-271-26/+11
* 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