Commit 31f8483e authored by Fred Drake's avatar Fred Drake

Allow a page break in a code longish example.

parent cfbf1a33
...@@ -996,11 +996,13 @@ static PyMethodDef keywdarg_methods[] = { ...@@ -996,11 +996,13 @@ static PyMethodDef keywdarg_methods[] = {
* only take two PyObject* parameters, and keywdarg_parrot() takes * only take two PyObject* parameters, and keywdarg_parrot() takes
* three. * three.
*/ */
{"parrot", (PyCFunction)keywdarg_parrot, METH_VARARGS|METH_KEYWORDS, {"parrot", (PyCFunction)keywdarg_parrot, METH_VARARGS | METH_KEYWORDS,
"Print a lovely skit to standard output."}, "Print a lovely skit to standard output."},
{NULL, NULL, 0, NULL} /* sentinel */ {NULL, NULL, 0, NULL} /* sentinel */
}; };
\end{verbatim}
\begin{verbatim}
void void
initkeywdarg(void) initkeywdarg(void)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment