Commit 83cedcf6 authored by Jim Fulton's avatar Jim Fulton

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

argument "obj" rather than "self".
parent 362310df
......@@ -749,7 +749,7 @@ static void
newdatatype_dealloc(newdatatypeobject * obj)
{
free(obj->obj_UnderlyingDatatypePtr);
obj->ob_type->tp_free(self);
obj->ob_type->tp_free(obj);
}
\end{verbatim}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment