summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Small anal correctness tweaks:Tim Peters2002-04-121-2/+2
* Add Raymond Hettinger's d.pop(). See SF patch 539949.Guido van Rossum2002-04-121-0/+38
* _PyObject_DebugRealloc(): rewritten to let the underlying realloc doTim Peters2002-04-121-27/+30
* _PyObject_DebugDumpAddress(): clarify an output message.Tim Peters2002-04-121-1/+1
* PYMALLOC_{CLEAN, DEAD, FORBIDDEN}BYTE symbols: remove the PYMALLOC_Tim Peters2002-04-121-34/+39
* First stab at rationalizing the PyMem_ API. Mixing PyObject_xyz withTim Peters2002-04-121-6/+1
* Move PyObject_Malloc and PyObject_Free here from object.c. RemoveNeil Schemenauer2002-04-121-61/+33
* Move PyObject_Malloc and PyObject_Free to obmalloc.c.Neil Schemenauer2002-04-121-21/+2
* Remove PyMalloc_*.Neil Schemenauer2002-04-121-5/+5
* Change signature of _PyObject_GC_Malloc to match PyObject_MALLOC.Neil Schemenauer2002-04-121-6/+6
* PyObject_GC_Del can now be used as a function designator.Neil Schemenauer2002-04-121-1/+1
* Remove PyMalloc_New and PyMalloc_Del.Neil Schemenauer2002-04-122-4/+4
* Remove PyMalloc_New, _PyMalloc_MALLOC, and PyMalloc_Del.Neil Schemenauer2002-04-121-7/+7
* Remove PyMalloc_New and PyMalloc_Del.Neil Schemenauer2002-04-121-2/+2
* PyObject_GC_Del can now be used as a function designator.Neil Schemenauer2002-04-123-3/+3
* PyObject_Del can now be used as a function designator.Neil Schemenauer2002-04-124-5/+5
* PyObject_GC_Del and PyObject_Del can now be used as a functionNeil Schemenauer2002-04-121-3/+3
* SF bug 542181: Realloc behaviorTim Peters2002-04-111-12/+16
* Bug fix for UTF-8 encoding bug (buffer overrun) #541828.Marc-André Lemburg2002-04-101-39/+46
* Added test case for UTF-8 encoding bug #541828.Marc-André Lemburg2002-04-101-2/+2
* SF bug 538827: Python open w/ MSVC6: bad error msgs.Tim Peters2002-04-081-2/+15
* - A type can now inherit its metatype from its base type. Previously,Guido van Rossum2002-04-081-6/+6
* isatty() should return a bool.Guido van Rossum2002-04-071-1/+1
* Minor improvements to the stats output dump, including adding commas toTim Peters2002-04-061-10/+34
* - Changed new-style class instantiation so that when C's __new__Guido van Rossum2002-04-061-0/+4
* Don't inherit tp_new! This is a retraction of half of the previousGuido van Rossum2002-04-051-1/+0
* Inherit tp_new and tp_is_gc.Guido van Rossum2002-04-051-0/+2
* Repair an incomprehensible comment.Tim Peters2002-04-051-2/+2
* _PyMalloc_DebugDumpStats(): vastly improved the output, and it nowTim Peters2002-04-051-21/+58
* Widespread, but mostly in _PyMalloc_Malloc: optimize away all expensiveTim Peters2002-04-051-40/+39
* A much revised version of SF patch 514662, by Naofumi Honda. ThisGuido van Rossum2002-04-041-99/+128
* 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