diff options
author | Fred Drake <fdrake@acm.org> | 2002-04-12 15:37:43 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-04-12 15:37:43 (GMT) |
commit | 0babc44ab2696b89dd4cd60aae68da11dc6cfbf3 (patch) | |
tree | 2482565f23dae4d0d504270222148d3a49b66333 /Doc | |
parent | 263ad28be9ae7f6914a7018be2c653b43e35059a (diff) | |
download | cpython-0babc44ab2696b89dd4cd60aae68da11dc6cfbf3.zip cpython-0babc44ab2696b89dd4cd60aae68da11dc6cfbf3.tar.gz cpython-0babc44ab2696b89dd4cd60aae68da11dc6cfbf3.tar.bz2 |
Update the type of tp_dealloc.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/ext/newtypes.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ext/newtypes.tex b/Doc/ext/newtypes.tex index 96cc8def..89f95be 100644 --- a/Doc/ext/newtypes.tex +++ b/Doc/ext/newtypes.tex @@ -347,7 +347,7 @@ will implement. \index{finalization, of objects} \begin{verbatim} - destructor tp_dealloc; + freefunc tp_dealloc; \end{verbatim} This function is called when the reference count of the instance of |