summaryrefslogtreecommitdiff
path: root/Include/objimpl.h
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2000-08-16 12:27:23 +0000
committerAndrew M. Kuchling <amk@amk.ca>2000-08-16 12:27:23 +0000
commit127c1d281832f99f95e00fa8029e9542d656fbbb (patch)
treecbe249ffb10c354000ed9250b93188742d863c7c /Include/objimpl.h
parent8e3fa0b59a15204bf99e445c3cb2ea0b3f779360 (diff)
downloadcpython-127c1d281832f99f95e00fa8029e9542d656fbbb.tar.gz
Updated comment
Diffstat (limited to 'Include/objimpl.h')
-rw-r--r--Include/objimpl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/objimpl.h b/Include/objimpl.h
index 0fd813df3e..f44963c7b3 100644
--- a/Include/objimpl.h
+++ b/Include/objimpl.h
@@ -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) )