Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 1 | \chapter{Generic Operating System Services} |
| 2 | |
| 3 | The modules described in this chapter provide interfaces to operating |
| 4 | system features that are available on (almost) all operating systems, |
| 5 | such as files and a clock. The interfaces are generally modelled |
| 6 | after the \UNIX{} or C interfaces but they are available on most other |
| 7 | systems 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 Drake | 4b3f031 | 1996-12-13 22:04:31 +0000 | [diff] [blame] | 23 | \item[errno] |
| 24 | --- Standard errno system symbols. |
| 25 | |
Guido van Rossum | e6d579d | 1997-03-25 22:07:53 +0000 | [diff] [blame] | 26 | \item[glob] |
| 27 | --- Unix shell style pathname pattern expansion. |
| 28 | |
Guido van Rossum | e76b7a8 | 1997-04-27 21:25:52 +0000 | [diff] [blame] | 29 | \item[fnmatch] |
| 30 | --- Unix shell style pathname pattern matching. |
| 31 | |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 32 | \end{description} |