summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libgrp.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-04-03 20:13:55 (GMT)
committerFred Drake <fdrake@acm.org>2000-04-03 20:13:55 (GMT)
commit38e5d27caee56b6958e0034e342abb48e6100390 (patch)
tree6a0c853da853123dd2e628e8ec187517250c2530 /Doc/lib/libgrp.tex
parent659ebfa79e891fc5e2480cd66c157970df57c451 (diff)
downloadcpython-38e5d27caee56b6958e0034e342abb48e6100390.zip
cpython-38e5d27caee56b6958e0034e342abb48e6100390.tar.gz
cpython-38e5d27caee56b6958e0034e342abb48e6100390.tar.bz2
Merged changes from the 1.5.2p2 release.
(Very rough.)
Diffstat (limited to 'Doc/lib/libgrp.tex')
-rw-r--r--Doc/lib/libgrp.tex17
1 files changed, 13 insertions, 4 deletions
diff --git a/Doc/lib/libgrp.tex b/Doc/lib/libgrp.tex
index 10f12e8..2925297 100644
--- a/Doc/lib/libgrp.tex
+++ b/Doc/lib/libgrp.tex
@@ -11,10 +11,14 @@ It is available on all \UNIX{} versions.
Group database entries are reported as 4-tuples containing the
following items from the group database (see \code{<grp.h>}), in order:
-\code{gr_name},
-\code{gr_passwd},
-\code{gr_gid},
-\code{gr_mem}.
+
+\begin{tableiii}{r|l|l}{textrm}{Index}{Field}{Meaning}
+ \lineiii{0}{gr_name}{the name of the group}
+ \lineiii{1}{gr_passwd}{the (encrypted) group password; often empty}
+ \lineiii{2}{gr_gid}{the numerical group ID}
+ \lineiii{3}{gr_mem}{all the group member's user names}
+\end{tableiii}
+
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
@@ -34,3 +38,8 @@ Return the group database entry for the given group name.
\begin{funcdesc}{getgrall}{}
Return a list of all available group entries, in arbitrary order.
\end{funcdesc}
+
+
+\begin{seealso}
+ \seemodule{pwd}{An interface to the user database, similar to this.}
+\end{seealso}