diff options
author | Guido van Rossum <guido@python.org> | 1994-01-02 01:22:07 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-01-02 01:22:07 (GMT) |
commit | 5fdeeeae2a12b9956cc84d62eae82f72cabc8664 (patch) | |
tree | ac0053479e10099850c8e0d06e31cb3afbf632bb /Doc/libpwd.tex | |
parent | 0b0719866e8a32d0a787e73bca9e79df1d1a74f8 (diff) | |
download | cpython-5fdeeeae2a12b9956cc84d62eae82f72cabc8664.zip cpython-5fdeeeae2a12b9956cc84d62eae82f72cabc8664.tar.gz cpython-5fdeeeae2a12b9956cc84d62eae82f72cabc8664.tar.bz2 |
Restructured library documentation
Diffstat (limited to 'Doc/libpwd.tex')
-rw-r--r-- | Doc/libpwd.tex | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Doc/libpwd.tex b/Doc/libpwd.tex new file mode 100644 index 0000000..7bb30d8 --- /dev/null +++ b/Doc/libpwd.tex @@ -0,0 +1,32 @@ +\section{Built-in Module \sectcode{pwd}} + +\bimodindex{pwd} +This module provides access to the \UNIX{} password database. +It is available on all \UNIX{} versions. + +Password database entries are reported as 7-tuples containing the +following items from the password database (see \file{<pwd.h>}), in order: +\code{pw_name}, +\code{pw_passwd}, +\code{pw_uid}, +\code{pw_gid}, +\code{pw_gecos}, +\code{pw_dir}, +\code{pw_shell}. +The uid and gid items are integers, all others are strings. +An exception is raised if the entry asked for cannot be found. + +It defines the following items: + +\renewcommand{\indexsubitem}{(in module pwd)} +\begin{funcdesc}{getpwuid}{uid} +Return the password database entry for the given numeric user ID. +\end{funcdesc} + +\begin{funcdesc}{getpwnam}{name} +Return the password database entry for the given user name. +\end{funcdesc} + +\begin{funcdesc}{getpwall}{} +Return a list of all available password database entries, in arbitrary order. +\end{funcdesc} |