summaryrefslogtreecommitdiffstats
path: root/Include/pymem.h
Commit message (Collapse)AuthorAgeFilesLines
...
* Simpilify PyCore_* macros by assuming the function prototypes forNeil Schemenauer2002-03-181-68/+4
| | | | malloc() and free() don't change.
* Whether platform malloc(0) returns NULL has nothing to do with whetherTim Peters2002-03-021-7/+12
| | | | | | | | | | | platform realloc(p, 0) returns NULL, so MALLOC_ZERO_RETURNS_NULL can be correctly undefined yet realloc(p, 0) can return NULL anyway. Prevent realloc(p, 0) doing free(p) and returning NULL via a different hack. Would probably be better to get rid of MALLOC_ZERO_RETURNS_NULL entirely. Bugfix candidate.
* Repair more now-obsolete references to config.h.Tim Peters2001-07-261-1/+1
|
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
| | | | This should match the situation in the 1.6b1 tree.
* Fix a typo in the PyMem_Resize macro, found by Andrew KuchlingVladimir Marangozov2000-08-131-1/+1
|
* patch from Vladimir (move Py_Mem* interface to Include/pymem.h)Peter Schneider-Kamp2000-07-311-0/+179