cpython: f46b4b7b817c (original) (raw)
Mercurial > cpython
changeset 78589:f46b4b7b817c
merge 3.2
Eli Bendersky eliben@gmail.com | |
---|---|
date | Wed, 15 Aug 2012 14:51:08 +0300 |
parents | 7c8c6b905a18(current diff)a4ad88218dca(diff) |
children | 65ef6ae39ea3 |
files | Doc/extending/extending.rst |
diffstat | 1 files changed, 10 insertions(+), 5 deletions(-)[+] [-] Doc/extending/extending.rst 15 |
line wrap: on
line diff
--- a/Doc/extending/extending.rst +++ b/Doc/extending/extending.rst @@ -732,13 +732,18 @@ Philbrick (philbrick@hks.com):: {NULL, NULL, 0, NULL} /* sentinel */ }; -::
- static struct PyModuleDef keywdargmodule = {
PyModuleDef_HEAD_INIT,[](#l1.9)
"keywdarg",[](#l1.10)
NULL,[](#l1.11)
-1,[](#l1.12)
keywdarg_methods[](#l1.13)
- };
/* Create the module and add the functions */[](#l1.21)
Py_InitModule("keywdarg", keywdarg_methods);[](#l1.22)