blob: c167109cb6fafbbc55280530e00f275b3d03ccb5 [file] [log] [blame]
Guido van Rossumecde7811995-03-28 13:35:14 +00001\chapter{Generic Operating System Services}
2
3The modules described in this chapter provide interfaces to operating
4system features that are available on (almost) all operating systems,
5such as files and a clock. The interfaces are generally modelled
6after the \UNIX{} or C interfaces but they are available on most other
7systems as well. Here's an overview:
8
9\begin{description}
10
11\item[os]
12--- Miscellaneous OS interfaces.
13
14\item[time]
15--- Time access and conversions.
16
17\item[getopt]
18--- Parser for command line options.
19
20\item[tempfile]
21--- Generate temporary file names.
22
Fred Drake4b3f0311996-12-13 22:04:31 +000023\item[errno]
24--- Standard errno system symbols.
25
Guido van Rossumecde7811995-03-28 13:35:14 +000026\end{description}