From: Jim Fulton Date: Thu, 8 May 2003 10:32:10 +0000 (+0000) Subject: Fixed a typo in an example dealloc routine that calls it's "self" X-Git-Tag: v2.3c1~801 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=83cedcf66068b64c877a041f206dcd035dbeb346;p=thirdparty%2FPython%2Fcpython.git Fixed a typo in an example dealloc routine that calls it's "self" argument "obj" rather than "self". --- diff --git a/Doc/ext/newtypes.tex b/Doc/ext/newtypes.tex index 3948993f4f32..cfc76b89aea4 100644 --- a/Doc/ext/newtypes.tex +++ b/Doc/ext/newtypes.tex @@ -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}