From 83cedcf66068b64c877a041f206dcd035dbeb346 Mon Sep 17 00:00:00 2001 From: Jim Fulton Date: Thu, 8 May 2003 10:32:10 +0000 Subject: Fixed a typo in an example dealloc routine that calls it's "self" argument "obj" rather than "self". --- Doc/ext/newtypes.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/ext/newtypes.tex b/Doc/ext/newtypes.tex index 3948993..cfc76b8 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} -- cgit v0.12