cleanup_helper(): Added missing "void" type for the function, updated

comments to reflect reality.
This commit is contained in:
Fred Drake 2001-02-26 20:10:51 +00:00
parent b60654bc15
commit 32efcdbceb
1 changed files with 3 additions and 6 deletions

View File

@ -685,14 +685,11 @@ weakref_proxy(PyObject *self, PyObject *args)
* is installed in the init_weakref() function. It is called by the * is installed in the init_weakref() function. It is called by the
* tp_dealloc handler to clear weak references. * tp_dealloc handler to clear weak references.
* *
* This returns true if the object should be deallocated, and false if the
* object is resurrected and deallocation should be aborted.
*
* This iterates through the weak references for 'object' and calls callbacks * This iterates through the weak references for 'object' and calls callbacks
* until one resurrects the object, at which point it stops invalidating * for those references which have one. It returns when all callbacks have
* weak references and returns false. * been attempted.
*/ */
static static void
cleanup_helper(PyObject *object) cleanup_helper(PyObject *object)
{ {
PyWeakReference **list; PyWeakReference **list;