diff options
author | Fred Drake <fdrake@acm.org> | 1999-04-29 02:47:40 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-04-29 02:47:40 (GMT) |
commit | 5f342ac2a71f66985604acfef4a1d50f550f0c49 (patch) | |
tree | a4570844bfbe77ecbade8065c8000b7266f64df0 /Doc/ext | |
parent | a4a90ddeac5f5a9a3476adb79bbac28ed1464438 (diff) | |
download | cpython-5f342ac2a71f66985604acfef4a1d50f550f0c49.zip cpython-5f342ac2a71f66985604acfef4a1d50f550f0c49.tar.gz cpython-5f342ac2a71f66985604acfef4a1d50f550f0c49.tar.bz2 |
Always use "section" when referring to sections of a document, not "Section".
Diffstat (limited to 'Doc/ext')
-rw-r--r-- | Doc/ext/ext.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/ext/ext.tex b/Doc/ext/ext.tex index 3c7fae9..d645af7 100644 --- a/Doc/ext/ext.tex +++ b/Doc/ext/ext.tex @@ -493,16 +493,16 @@ my_set_callback(dummy, arg) \end{verbatim} This function must be registered with the interpreter using the -\constant{METH_VARARGS} flag; this is described in Section +\constant{METH_VARARGS} flag; this is described in section \ref{methodTable}, ``The Module's Method Table and Initialization Function.'' The \cfunction{PyArg_ParseTuple()} function and its -arguments are documented in Section \ref{parseTuple}, ``Format Strings +arguments are documented in section \ref{parseTuple}, ``Format Strings for \cfunction{PyArg_ParseTuple()}.'' The macros \cfunction{Py_XINCREF()} and \cfunction{Py_XDECREF()} increment/decrement the reference count of an object and are safe in the presence of \NULL{} pointers (but note that \var{temp} will not be -\NULL{} in this context). More info on them in Section +\NULL{} in this context). More info on them in section \ref{refcounts}, ``Reference Counts.'' Later, when it is time to call the function, you call the C function |