diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-07-07 14:35:15 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-07-07 14:35:15 (GMT) |
commit | 1a2b24f02dfd4eb3383f6ae2b59e5a4eb66fd5bb (patch) | |
tree | d0bac08478e97df6c9f949e0f9622a67d4d15d96 /Modules/spwdmodule.c | |
parent | b8a2f51ceb636878ec767554eddbb11ff4502c55 (diff) | |
download | cpython-1a2b24f02dfd4eb3383f6ae2b59e5a4eb66fd5bb.zip cpython-1a2b24f02dfd4eb3383f6ae2b59e5a4eb66fd5bb.tar.gz cpython-1a2b24f02dfd4eb3383f6ae2b59e5a4eb66fd5bb.tar.bz2 |
Issue #27332: Fixed the type of the first argument of module-level functions
generated by Argument Clinic. Patch by Petr Viktorin.
Diffstat (limited to 'Modules/spwdmodule.c')
-rw-r--r-- | Modules/spwdmodule.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/spwdmodule.c b/Modules/spwdmodule.c index 49324d5..4b9f3cd 100644 --- a/Modules/spwdmodule.c +++ b/Modules/spwdmodule.c @@ -125,8 +125,8 @@ See `help(spwd)` for more on shadow password database entries. [clinic start generated code]*/ static PyObject * -spwd_getspnam_impl(PyModuleDef *module, PyObject *arg) -/*[clinic end generated code: output=9f6bbe51a4eb3b21 input=dd89429e6167a00f]*/ +spwd_getspnam_impl(PyObject *module, PyObject *arg) +/*[clinic end generated code: output=701250cf57dc6ebe input=dd89429e6167a00f]*/ { char *name; struct spwd *p; @@ -159,8 +159,8 @@ See `help(spwd)` for more on shadow password database entries. [clinic start generated code]*/ static PyObject * -spwd_getspall_impl(PyModuleDef *module) -/*[clinic end generated code: output=b12d8ec7bdb29612 input=b2c84b7857d622bd]*/ +spwd_getspall_impl(PyObject *module) +/*[clinic end generated code: output=4fda298d6bf6d057 input=b2c84b7857d622bd]*/ { PyObject *d; struct spwd *p; |