diff options
author | Marc-André Lemburg <mal@egenix.com> | 2001-01-17 18:04:31 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2001-01-17 18:04:31 (GMT) |
commit | a544ea2354b9ce7f20f4fc44535ffae91eafa960 (patch) | |
tree | 68874271f49759975ece444b0da7519123957996 /Doc | |
parent | ad7c98e264bbc9c84e911417c8770f6e95ffb794 (diff) | |
download | cpython-a544ea2354b9ce7f20f4fc44535ffae91eafa960.zip cpython-a544ea2354b9ce7f20f4fc44535ffae91eafa960.tar.gz cpython-a544ea2354b9ce7f20f4fc44535ffae91eafa960.tar.bz2 |
Undoing the whitespace patches which sneaked into the earlier patch.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/api/api.tex | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/api/api.tex b/Doc/api/api.tex index da26364..b15c2d3 100644 --- a/Doc/api/api.tex +++ b/Doc/api/api.tex @@ -4,7 +4,7 @@ \input{boilerplate} -\makeindex % tell \index to actually write the .idx file +\makeindex % tell \index to actually write the .idx file \begin{document} @@ -3788,14 +3788,14 @@ Returns true if its argument is a \ctype{PyCObject}. \end{cfuncdesc} \begin{cfuncdesc}{PyObject*}{PyCObject_FromVoidPtr}{void* cobj, - void (*destr)(void *)} + void (*destr)(void *)} Creates a \ctype{PyCObject} from the \code{void *}\var{cobj}. The \var{destr} function will be called when the object is reclaimed, unless it is \NULL. \end{cfuncdesc} \begin{cfuncdesc}{PyObject*}{PyCObject_FromVoidPtrAndDesc}{void* cobj, - void* desc, void (*destr)(void *, void *) } + void* desc, void (*destr)(void *, void *) } Creates a \ctype{PyCObject} from the \ctype{void *}\var{cobj}. The \var{destr} function will be called when the object is reclaimed. The \var{desc} argument can be used to pass extra callback data for the @@ -4669,11 +4669,11 @@ implementing new object types in C. \end{cfuncdesc} \begin{cfuncdesc}{PyObject*}{PyObject_Init}{PyObject *op, - PyTypeObject *type} + PyTypeObject *type} \end{cfuncdesc} \begin{cfuncdesc}{PyVarObject*}{PyObject_InitVar}{PyVarObject *op, - PyTypeObject *type, int size} + PyTypeObject *type, int size} \end{cfuncdesc} \begin{cfuncdesc}{\var{TYPE}*}{PyObject_New}{TYPE, PyTypeObject *type} @@ -4917,6 +4917,6 @@ The function cannot fail. \chapter{Reporting Bugs} \input{reportingbugs} -\input{api.ind} % Index -- must be last +\input{api.ind} % Index -- must be last \end{document} |