mirror of
https://github.com/python/cpython.git
synced 2025-09-14 20:56:06 +00:00
Allow a page break in a code longish example.
This commit is contained in:
parent
cfbf1a33c1
commit
31f8483eef
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue