Home | History | Annotate | Download | only in Modules

Lines Matching refs:getgrouplist

5976 "getgrouplist(user, group) -> list of groups to which a user belongs\n\n\
6002 if (!PyArg_ParseTuple(args, "si:getgrouplist", &user, &basegid))
6005 if (!PyArg_ParseTuple(args, "sO&:getgrouplist", &user,
6018 if (getgrouplist(user, basegid, groups, &ngroups) == -1) {
12217 {"getgrouplist", posix_getgrouplist, METH_VARARGS, posix_getgrouplist__doc__},