]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Updated comment
authorAndrew M. Kuchling <amk@amk.ca>
Wed, 16 Aug 2000 12:27:23 +0000 (12:27 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Wed, 16 Aug 2000 12:27:23 +0000 (12:27 +0000)
Include/objimpl.h
Objects/object.c

index 0fd813df3effe01f81d76f29b0b171440047c5a1..f44963c7b3368ae622081984dc88b803dbdbf7aa 100644 (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) )
index d6b7607dd8812a852bd5b03313d09abf1264b240..99fea99bc63a0076b70757896b2ebf839cac0b8c 100644 (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)