Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
0bded916
Commit
0bded916
authored
Mar 03, 1998
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Doc strings added by Mitch Chapman.
parent
13191df0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
4 deletions
+32
-4
Modules/pwdmodule.c
Modules/pwdmodule.c
+32
-4
No files found.
Modules/pwdmodule.c
View file @
0bded916
...
...
@@ -36,6 +36,17 @@ PERFORMANCE OF THIS SOFTWARE.
#include <sys/types.h>
#include <pwd.h>
static
char
pwd__doc__
[]
=
"\
This module provides access to the Unix password database.
\n
\
It is available on all Unix versions.
\n
\
\n
\
Password database entries are reported as 7-tuples containing the following
\n
\
items from the password database (see `<pwd.h>'), in order:
\n
\
pw_name, pw_passwd, pw_uid, pw_gid, pw_gecos, pw_dir, pw_shell.
\n
\
The uid and gid items are integers, all others are strings. An
\n
\
exception is raised if the entry asked for cannot be found."
;
static
PyObject
*
mkpwent
(
p
)
struct
passwd
*
p
;
...
...
@@ -58,6 +69,11 @@ mkpwent(p)
p
->
pw_shell
);
}
static
char
pwd_getpwuid__doc__
[]
=
"\
getpwuid(uid) -> entry
\n
\
Return the password database entry for the given numeric user ID.
\n
\
See pwd.__doc__ for more on password database entries."
;
static
PyObject
*
pwd_getpwuid
(
self
,
args
)
PyObject
*
self
;
...
...
@@ -74,6 +90,11 @@ pwd_getpwuid(self, args)
return
mkpwent
(
p
);
}
static
char
pwd_getpwnam__doc__
[]
=
"\
getpwnam(name) -> entry
\n
\
Return the password database entry for the given user name.
\n
\
See pwd.__doc__ for more on password database entries."
;
static
PyObject
*
pwd_getpwnam
(
self
,
args
)
PyObject
*
self
;
...
...
@@ -91,6 +112,12 @@ pwd_getpwnam(self, args)
}
#ifdef HAVE_GETPWENT
static
char
pwd_getpwall__doc__
[]
=
"\
getpwall() -> list_of_entries
\n
\
Return a list of all available password database entries, \
in arbitrary order.
\n
\
See pwd.__doc__ for more on password database entries."
;
static
PyObject
*
pwd_getpwall
(
self
,
args
)
PyObject
*
self
;
...
...
@@ -117,10 +144,10 @@ pwd_getpwall(self, args)
#endif
static
PyMethodDef
pwd_methods
[]
=
{
{
"getpwuid"
,
pwd_getpwuid
},
{
"getpwnam"
,
pwd_getpwnam
},
{
"getpwuid"
,
pwd_getpwuid
,
0
,
pwd_getpwuid__doc__
},
{
"getpwnam"
,
pwd_getpwnam
,
0
,
pwd_getpwnam__doc__
},
#ifdef HAVE_GETPWENT
{
"getpwall"
,
pwd_getpwall
},
{
"getpwall"
,
pwd_getpwall
,
0
,
pwd_getpwall__doc__
},
#endif
{
NULL
,
NULL
}
/* sentinel */
};
...
...
@@ -128,5 +155,6 @@ static PyMethodDef pwd_methods[] = {
void
initpwd
()
{
Py_InitModule
(
"pwd"
,
pwd_methods
);
Py_InitModule4
(
"pwd"
,
pwd_methods
,
pwd__doc__
,
(
PyObject
*
)
NULL
,
PYTHON_API_VERSION
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment