diff options
author | Georg Brandl <georg@python.org> | 2006-08-18 07:35:47 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-08-18 07:35:47 (GMT) |
commit | e7c9bad93d3acf87197d40ec67546bbc3c3dc7ed (patch) | |
tree | 4ce69e58ccc345c47a28e8e2b2b2fcb7c94f6512 /Doc/api | |
parent | b24547977e9097bffc01a6172528cab000612572 (diff) | |
download | cpython-e7c9bad93d3acf87197d40ec67546bbc3c3dc7ed.zip cpython-e7c9bad93d3acf87197d40ec67546bbc3c3dc7ed.tar.gz cpython-e7c9bad93d3acf87197d40ec67546bbc3c3dc7ed.tar.bz2 |
Typo in tp_clear docs.
Diffstat (limited to 'Doc/api')
-rw-r--r-- | Doc/api/newtypes.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/api/newtypes.tex b/Doc/api/newtypes.tex index 04f6795..43d2f88 100644 --- a/Doc/api/newtypes.tex +++ b/Doc/api/newtypes.tex @@ -979,7 +979,7 @@ The following three fields only exist if the More information about Python's garbage collection scheme can be found in section \ref{supporting-cycle-detection}. - This field is inherited by subtypes together with \member{tp_clear} + This field is inherited by subtypes together with \member{tp_traverse} and the \constant{Py_TPFLAGS_HAVE_GC} flag bit: the flag bit, \member{tp_traverse}, and \member{tp_clear} are all inherited from the base type if they are all zero in the subtype \emph{and} the |