From: Fred Drake Date: Thu, 28 Mar 2002 20:19:23 +0000 (+0000) Subject: Allow a page break in a code longish example. X-Git-Tag: v2.3c1~6292 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=31f8483eef19ebf40c7831d79cac270e69a96ce0;p=python Allow a page break in a code longish example. --- diff --git a/Doc/ext/extending.tex b/Doc/ext/extending.tex index d77a7142d2..2c0900ee7c 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) {