Fixed a typo in an example dealloc routine that calls it's "self"

argument "obj" rather than "self".
This commit is contained in:
Jim Fulton 2003-05-08 10:32:10 +00:00
parent 362310df81
commit 83cedcf660
1 changed files with 1 additions and 1 deletions

View File

@ -749,7 +749,7 @@ static void
newdatatype_dealloc(newdatatypeobject * obj) newdatatype_dealloc(newdatatypeobject * obj)
{ {
free(obj->obj_UnderlyingDatatypePtr); free(obj->obj_UnderlyingDatatypePtr);
obj->ob_type->tp_free(self); obj->ob_type->tp_free(obj);
} }
\end{verbatim} \end{verbatim}