blob: 895c6e57453c1e748acd3379933490c525432fec [file] [log] [blame]
Guido van Rossumecde7811995-03-28 13:35:14 +00001\chapter{UNIX Specific Services}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00002
3The modules described in this chapter provide interfaces to features
Guido van Rossum6bb1adc1995-03-13 10:03:32 +00004that are unique to the \UNIX{} operating system, or in some cases to
Guido van Rossumecde7811995-03-28 13:35:14 +00005some or many variants of it. Here's an overview:
6
7\begin{description}
8
9\item[posix]
10--- The most common Posix system calls (normally used via module \code{os}).
11
12\item[posixpath]
13--- Common Posix pathname manipulations (normally used via \code{os.path}).
14
15\item[pwd]
16--- The password database (\code{getpwnam()} and friends).
17
18\item[grp]
19--- The group database (\code{getgrnam()} and friends).
20
Guido van Rossum5c6e3731996-04-10 16:18:20 +000021\item[crypt]
22--- The (\code{crypt()} function used to check Unix passwords).
23
Guido van Rossumecde7811995-03-28 13:35:14 +000024\item[dbm]
25--- The standard ``database'' interface, based on \code{ndbm}.
26
27\item[gdbm]
28--- GNU's reinterpretation of dbm.
29
30\item[termios]
31--- Posix style tty control.
32
33\item[fcntl]
34--- The \code{fcntl()} and \code{ioctl()} system calls.
35
36\item[posixfile]
37--- A file-like object with support for locking.
38
39\end{description}