Skip to content

Commit 31f8483

Browse files
committed
Allow a page break in a code longish example.
1 parent cfbf1a3 commit 31f8483

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Doc/ext/extending.tex

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -996,11 +996,13 @@ \section{Keyword Parameters for Extension Functions
996996
* only take two PyObject* parameters, and keywdarg_parrot() takes
997997
* three.
998998
*/
999-
{"parrot", (PyCFunction)keywdarg_parrot, METH_VARARGS|METH_KEYWORDS,
999+
{"parrot", (PyCFunction)keywdarg_parrot, METH_VARARGS | METH_KEYWORDS,
10001000
"Print a lovely skit to standard output."},
10011001
{NULL, NULL, 0, NULL} /* sentinel */
10021002
};
1003+
\end{verbatim}
10031004

1005+
\begin{verbatim}
10041006
void
10051007
initkeywdarg(void)
10061008
{

0 commit comments

Comments
 (0)