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/pwdmodule.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/pwdmodule.c')
-rw-r--r-- | Modules/pwdmodule.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Modules/pwdmodule.c b/Modules/pwdmodule.c index 281c30b..7416cf7 100644 --- a/Modules/pwdmodule.c +++ b/Modules/pwdmodule.c @@ -105,8 +105,8 @@ See `help(pwd)` for more on password database entries. [clinic start generated code]*/ static PyObject * -pwd_getpwuid(PyModuleDef *module, PyObject *uidobj) -/*[clinic end generated code: output=cba29ae4c2bcb8e1 input=ae64d507a1c6d3e8]*/ +pwd_getpwuid(PyObject *module, PyObject *uidobj) +/*[clinic end generated code: output=c4ee1d4d429b86c4 input=ae64d507a1c6d3e8]*/ { uid_t uid; struct passwd *p; @@ -141,8 +141,8 @@ See `help(pwd)` for more on password database entries. [clinic start generated code]*/ static PyObject * -pwd_getpwnam_impl(PyModuleDef *module, PyObject *arg) -/*[clinic end generated code: output=66848d42d386fca3 input=d5f7e700919b02d3]*/ +pwd_getpwnam_impl(PyObject *module, PyObject *arg) +/*[clinic end generated code: output=6abeee92430e43d2 input=d5f7e700919b02d3]*/ { char *name; struct passwd *p; @@ -173,8 +173,8 @@ See help(pwd) for more on password database entries. [clinic start generated code]*/ static PyObject * -pwd_getpwall_impl(PyModuleDef *module) -/*[clinic end generated code: output=ab30e37bf26d431d input=d7ecebfd90219b85]*/ +pwd_getpwall_impl(PyObject *module) +/*[clinic end generated code: output=4853d2f5a0afac8a input=d7ecebfd90219b85]*/ { PyObject *d; struct passwd *p; |