diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2000-08-16 12:27:23 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2000-08-16 12:27:23 (GMT) |
commit | 1582a3ab98b9792ae719e9b0bffdbdab9302f565 (patch) | |
tree | 84d0778528fe156e4f0c6df3becc68a6e0b1f3d6 /Include | |
parent | 080bb2a42496abe0b898355aef79f3a8376b751f (diff) | |
download | cpython-1582a3ab98b9792ae719e9b0bffdbdab9302f565.zip cpython-1582a3ab98b9792ae719e9b0bffdbdab9302f565.tar.gz cpython-1582a3ab98b9792ae719e9b0bffdbdab9302f565.tar.bz2 |
Updated comment
Diffstat (limited to 'Include')
-rw-r--r-- | Include/objimpl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/objimpl.h b/Include/objimpl.h index 0fd813d..f44963c 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) ) |