]> granicus.if.org Git - python/commitdiff
Allow a page break in a code longish example.
authorFred Drake <fdrake@acm.org>
Thu, 28 Mar 2002 20:19:23 +0000 (20:19 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 28 Mar 2002 20:19:23 +0000 (20:19 +0000)
Doc/ext/extending.tex

index d77a7142d2864ac851c63fc258c6bbcdcb6747c4..2c0900ee7ccdff19c7284fe7e15697a800e9934d 100644 (file)
@@ -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)
 {