PyDoc_STRVAR(pwd_getpwuid__doc__,
"getpwuid($module, uidobj, /)\n"
"--\n"
"\n"
"Return the password database entry for the given numeric user ID.\n"
"\n"
"See `help(pwd)` for more on password database entries.");
#define PWD_GETPWUID_METHODDEF …
PyDoc_STRVAR(pwd_getpwnam__doc__,
"getpwnam($module, name, /)\n"
"--\n"
"\n"
"Return the password database entry for the given user name.\n"
"\n"
"See `help(pwd)` for more on password database entries.");
#define PWD_GETPWNAM_METHODDEF …
static PyObject *
pwd_getpwnam_impl(PyObject *module, PyObject *name);
static PyObject *
pwd_getpwnam(PyObject *module, PyObject *arg)
{ … }
#if defined(HAVE_GETPWENT)
PyDoc_STRVAR(pwd_getpwall__doc__,
"getpwall($module, /)\n"
"--\n"
"\n"
"Return a list of all available password database entries, in arbitrary order.\n"
"\n"
"See help(pwd) for more on password database entries.");
#define PWD_GETPWALL_METHODDEF …
static PyObject *
pwd_getpwall_impl(PyObject *module);
static PyObject *
pwd_getpwall(PyObject *module, PyObject *Py_UNUSED(ignored))
{ … }
#endif
#ifndef PWD_GETPWALL_METHODDEF
#define PWD_GETPWALL_METHODDEF
#endif