Updated comment

This commit is contained in:
Andrew M. Kuchling 2000-08-16 12:27:23 +00:00
parent 080bb2a424
commit 1582a3ab98
2 changed files with 2 additions and 2 deletions

View File

@ -166,7 +166,7 @@ extern DL_IMPORT(void) _PyObject_Del(PyObject *);
( (type *) _PyObject_NewVar((typeobj), (n)) )
#define PyObject_Del(op) _PyObject_Del((PyObject *)(op))
/* Macros trading binary compatibility for speed. See also mymalloc.h.
/* Macros trading binary compatibility for speed. See also pymem.h.
Note that these macros expect non-NULL object pointers.*/
#define PyObject_INIT(op, typeobj) \
( (op)->ob_type = (typeobj), _Py_NewReference((PyObject *)(op)), (op) )

View File

@ -1004,7 +1004,7 @@ PyTypeObject *_Py_cobject_hack = &PyCObject_Type;
int (*_Py_abstract_hack)(PyObject *) = &PyObject_Size;
/* Python's malloc wrappers (see mymalloc.h) */
/* Python's malloc wrappers (see pymem.h) */
void *
PyMem_Malloc(size_t nbytes)