summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2002-03-28 20:19:23 (GMT)
committerFred Drake <fdrake@acm.org>2002-03-28 20:19:23 (GMT)
commit31f8483eef19ebf40c7831d79cac270e69a96ce0 (patch)
treea9ebd2984882076b8a3c1f4cb0db2928d388746d
parentcfbf1a33c17f5ea499a0419d94162d80c52ec782 (diff)
downloadcpython-31f8483eef19ebf40c7831d79cac270e69a96ce0.zip
cpython-31f8483eef19ebf40c7831d79cac270e69a96ce0.tar.gz
cpython-31f8483eef19ebf40c7831d79cac270e69a96ce0.tar.bz2
Allow a page break in a code longish example.
-rw-r--r--Doc/ext/extending.tex4
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/ext/extending.tex b/Doc/ext/extending.tex
index d77a714..2c0900e 100644
--- a/Doc/ext/extending.tex
+++ b/Doc/ext/extending.tex
@@ -996,11 +996,13 @@ static PyMethodDef keywdarg_methods[] = {
* only take two PyObject* parameters, and keywdarg_parrot() takes
* three.
*/
- {"parrot", (PyCFunction)keywdarg_parrot, METH_VARARGS|METH_KEYWORDS,
+ {"parrot", (PyCFunction)keywdarg_parrot, METH_VARARGS | METH_KEYWORDS,
"Print a lovely skit to standard output."},
{NULL, NULL, 0, NULL} /* sentinel */
};
+\end{verbatim}
+\begin{verbatim}
void
initkeywdarg(void)
{