diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-07-07 15:20:03 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-07-07 15:20:03 (GMT) |
commit | 2954f8399914c77e048f9e3358abfadb7a3f76e9 (patch) | |
tree | c8398eb8aa516e897bbafe9e43cb115d0365bcb0 /Modules/grpmodule.c | |
parent | 50600a78cb6b0e4ea47033a2fd5e982c20a5d946 (diff) | |
parent | 1a2b24f02dfd4eb3383f6ae2b59e5a4eb66fd5bb (diff) | |
download | cpython-2954f8399914c77e048f9e3358abfadb7a3f76e9.zip cpython-2954f8399914c77e048f9e3358abfadb7a3f76e9.tar.gz cpython-2954f8399914c77e048f9e3358abfadb7a3f76e9.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/grpmodule.c')
-rw-r--r-- | Modules/grpmodule.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Modules/grpmodule.c b/Modules/grpmodule.c index 5ad87f1..9437ae7 100644 --- a/Modules/grpmodule.c +++ b/Modules/grpmodule.c @@ -93,8 +93,8 @@ If id is not valid, raise KeyError. [clinic start generated code]*/ static PyObject * -grp_getgrgid_impl(PyModuleDef *module, PyObject *id) -/*[clinic end generated code: output=8a11f5fdeb8c78a0 input=15fa0e2ccf5cda25]*/ +grp_getgrgid_impl(PyObject *module, PyObject *id) +/*[clinic end generated code: output=30797c289504a1ba input=15fa0e2ccf5cda25]*/ { PyObject *py_int_id; gid_t gid; @@ -142,8 +142,8 @@ If name is not valid, raise KeyError. [clinic start generated code]*/ static PyObject * -grp_getgrnam_impl(PyModuleDef *module, PyObject *name) -/*[clinic end generated code: output=cd47511f4854da8e input=08ded29affa3c863]*/ +grp_getgrnam_impl(PyObject *module, PyObject *name) +/*[clinic end generated code: output=67905086f403c21c input=08ded29affa3c863]*/ { char *name_chars; struct group *p; @@ -174,8 +174,8 @@ to use YP/NIS and may not be accessible via getgrnam or getgrgid. [clinic start generated code]*/ static PyObject * -grp_getgrall_impl(PyModuleDef *module) -/*[clinic end generated code: output=add9037a20c202de input=d7df76c825c367df]*/ +grp_getgrall_impl(PyObject *module) +/*[clinic end generated code: output=585dad35e2e763d7 input=d7df76c825c367df]*/ { PyObject *d; struct group *p; |