( (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) )
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)