]> granicus.if.org Git - python/commitdiff
Change the type of the tp_dealloc back to what it really is.
authorFred Drake <fdrake@acm.org>
Fri, 12 Apr 2002 18:28:08 +0000 (18:28 +0000)
committerFred Drake <fdrake@acm.org>
Fri, 12 Apr 2002 18:28:08 +0000 (18:28 +0000)
Change a section title to fit in better.

Doc/ext/newtypes.tex

index 89f95be269327580d01b85bb62947cd9fb091f33..3e246f75df5082b6ac9bf6e3226567ca8d022b58 100644 (file)
@@ -347,7 +347,7 @@ will implement.
 \index{finalization, of objects}
 
 \begin{verbatim}
-    freefunc tp_dealloc;
+    destructor tp_dealloc;
 \end{verbatim}
 
 This function is called when the reference count of the instance of
@@ -918,7 +918,7 @@ avoiding the exception can yield slightly better performance.  If an
 actual error occurs, it should set an exception and return \NULL.
 
 
-\subsection{Cycle Collector Support
+\subsection{Supporting the Cycle Collector
             \label{example-cycle-support}}
 
 This example shows only enough of the implementation of an extension