diff options
author | Fred Drake <fdrake@acm.org> | 2000-07-08 16:59:03 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-07-08 16:59:03 (GMT) |
commit | 146b28086fe479be3477d87547569b7c1b7a5652 (patch) | |
tree | b00fa05f9a0141f2a6b711eed772e229b8a89272 /Doc/lib/libgrp.tex | |
parent | 51b6bc55e3062cd59a9f0fd8e11cc757fb10ff98 (diff) | |
download | cpython-146b28086fe479be3477d87547569b7c1b7a5652.zip cpython-146b28086fe479be3477d87547569b7c1b7a5652.tar.gz cpython-146b28086fe479be3477d87547569b7c1b7a5652.tar.bz2 |
Minor revisions similar to some information in the new docstrings.
Diffstat (limited to 'Doc/lib/libgrp.tex')
-rw-r--r-- | Doc/lib/libgrp.tex | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/lib/libgrp.tex b/Doc/lib/libgrp.tex index 2925297..8286081 100644 --- a/Doc/lib/libgrp.tex +++ b/Doc/lib/libgrp.tex @@ -22,17 +22,19 @@ following items from the group database (see \code{<grp.h>}), in order: The gid is an integer, name and password are strings, and the member list is a list of strings. (Note that most users are not explicitly listed as members of the -group they are in according to the password database.) -\exception{KeyError} is raised if the entry asked for cannot be found. +group they are in according to the password database. Check both +databases to get complete membership information.) It defines the following items: \begin{funcdesc}{getgrgid}{gid} Return the group database entry for the given numeric group ID. +\exception{KeyError} is raised if the entry asked for cannot be found. \end{funcdesc} \begin{funcdesc}{getgrnam}{name} Return the group database entry for the given group name. +\exception{KeyError} is raised if the entry asked for cannot be found. \end{funcdesc} \begin{funcdesc}{getgrall}{} |