mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Fixed a typo in an example dealloc routine that calls it's "self"
argument "obj" rather than "self".
This commit is contained in:
@@ -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}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user