Fred Drake | 6659c30 | 1998-03-03 22:02:19 +0000 | [diff] [blame] | 1 | \documentclass{manual} |
Guido van Rossum | 19f1b82 | 1991-11-12 15:41:57 +0000 | [diff] [blame] | 2 | |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 3 | % NOTE: this file controls which chapters/sections of the library |
| 4 | % manual are actually printed. It is easy to customize your manual |
| 5 | % by commenting out sections that you're not interested in. |
| 6 | |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 7 | \title{Python Library Reference} |
Guido van Rossum | 515834a | 1991-01-22 11:45:29 +0000 | [diff] [blame] | 8 | |
Guido van Rossum | 16cd7f9 | 1994-10-06 10:29:26 +0000 | [diff] [blame] | 9 | \input{boilerplate} |
Guido van Rossum | 83eb962 | 1993-11-23 16:28:45 +0000 | [diff] [blame] | 10 | |
Fred Drake | 7c30de6 | 2001-02-22 21:25:20 +0000 | [diff] [blame] | 11 | \makeindex % tell \index to actually write the |
| 12 | % .idx file |
| 13 | \makemodindex % ... and the module index as well. |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 14 | |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 15 | |
Guido van Rossum | 515834a | 1991-01-22 11:45:29 +0000 | [diff] [blame] | 16 | \begin{document} |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 17 | |
Guido van Rossum | 515834a | 1991-01-22 11:45:29 +0000 | [diff] [blame] | 18 | \maketitle |
| 19 | |
Fred Drake | 9f86b66 | 1998-07-28 21:55:19 +0000 | [diff] [blame] | 20 | \ifhtml |
| 21 | \chapter*{Front Matter\label{front}} |
| 22 | \fi |
| 23 | |
Guido van Rossum | 16cd7f9 | 1994-10-06 10:29:26 +0000 | [diff] [blame] | 24 | \input{copyright} |
| 25 | |
Guido van Rossum | 515834a | 1991-01-22 11:45:29 +0000 | [diff] [blame] | 26 | \begin{abstract} |
| 27 | |
| 28 | \noindent |
Guido van Rossum | 2ddd978 | 1995-03-30 16:01:33 +0000 | [diff] [blame] | 29 | Python is an extensible, interpreted, object-oriented programming |
| 30 | language. It supports a wide range of applications, from simple text |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 31 | processing scripts to interactive Web browsers. |
Guido van Rossum | 2ddd978 | 1995-03-30 16:01:33 +0000 | [diff] [blame] | 32 | |
Fred Drake | 37f1574 | 1999-11-10 16:21:37 +0000 | [diff] [blame] | 33 | While the \citetitle[../ref/ref.html]{Python Reference Manual} |
| 34 | describes the exact syntax and semantics of the language, it does not |
| 35 | describe the standard library that is distributed with the language, |
| 36 | and which greatly enhances its immediate usability. This library |
| 37 | contains built-in modules (written in C) that provide access to system |
| 38 | functionality such as file I/O that would otherwise be inaccessible to |
| 39 | Python programmers, as well as modules written in Python that provide |
| 40 | standardized solutions for many problems that occur in everyday |
| 41 | programming. Some of these modules are explicitly designed to |
| 42 | encourage and enhance the portability of Python programs. |
Guido van Rossum | 2ddd978 | 1995-03-30 16:01:33 +0000 | [diff] [blame] | 43 | |
| 44 | This library reference manual documents Python's standard library, as |
| 45 | well as many optional library modules (which may or may not be |
| 46 | available, depending on whether the underlying platform supports them |
| 47 | and on the configuration choices made at compile time). It also |
| 48 | documents the standard types of the language and its built-in |
| 49 | functions and exceptions, many of which are not or incompletely |
| 50 | documented in the Reference Manual. |
| 51 | |
| 52 | This manual assumes basic knowledge about the Python language. For an |
Fred Drake | 37f1574 | 1999-11-10 16:21:37 +0000 | [diff] [blame] | 53 | informal introduction to Python, see the |
| 54 | \citetitle[../tut/tut.html]{Python Tutorial}; the |
| 55 | \citetitle[../ref/ref.html]{Python Reference Manual} remains the |
| 56 | highest authority on syntactic and semantic questions. Finally, the |
| 57 | manual entitled \citetitle[../ext/ext.html]{Extending and Embedding |
| 58 | the Python Interpreter} describes how to add new extensions to Python |
| 59 | and how to embed it in other applications. |
Guido van Rossum | 515834a | 1991-01-22 11:45:29 +0000 | [diff] [blame] | 60 | |
| 61 | \end{abstract} |
| 62 | |
Fred Drake | 4d4f9e7 | 1998-01-13 22:25:02 +0000 | [diff] [blame] | 63 | \tableofcontents |
Guido van Rossum | 515834a | 1991-01-22 11:45:29 +0000 | [diff] [blame] | 64 | |
Fred Drake | 7c30de6 | 2001-02-22 21:25:20 +0000 | [diff] [blame] | 65 | % Chapter title: |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 66 | |
Fred Drake | 7c30de6 | 2001-02-22 21:25:20 +0000 | [diff] [blame] | 67 | \input{libintro} % Introduction |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 68 | |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 69 | |
| 70 | % ============= |
| 71 | % BUILT-INs |
| 72 | % ============= |
| 73 | |
Fred Drake | 7c30de6 | 2001-02-22 21:25:20 +0000 | [diff] [blame] | 74 | \input{libobjs} % Built-in Types, Exceptions and Functions |
Fred Drake | b4ea9d0 | 2001-10-30 06:22:02 +0000 | [diff] [blame] | 75 | \input{libfuncs} |
Fred Drake | 64e3b43 | 1998-07-24 13:56:11 +0000 | [diff] [blame] | 76 | \input{libstdtypes} |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 77 | \input{libexcs} |
Skip Montanaro | 1f041e7 | 2003-01-01 20:34:00 +0000 | [diff] [blame] | 78 | \input{libconsts} |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 79 | |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 80 | |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 81 | |
| 82 | % ============= |
| 83 | % BASIC/GENERAL-PURPOSE OBJECTS |
| 84 | % ============= |
| 85 | |
| 86 | % Strings |
Fred Drake | 7c30de6 | 2001-02-22 21:25:20 +0000 | [diff] [blame] | 87 | \input{libstrings} % String Services |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 88 | \input{libstring} |
Guido van Rossum | 9cb6480 | 1997-12-29 20:01:55 +0000 | [diff] [blame] | 89 | \input{libre} |
Skip Montanaro | 0588581 | 2005-01-16 20:48:27 +0000 | [diff] [blame] | 90 | \input{libreconvert} |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 91 | \input{libstruct} % XXX also/better in File Formats? |
Fred Drake | 15bc404 | 2001-02-19 16:32:40 +0000 | [diff] [blame] | 92 | \input{libdifflib} |
Fred Drake | 64e3b43 | 1998-07-24 13:56:11 +0000 | [diff] [blame] | 93 | \input{libstringio} |
Greg Ward | ae64f3ad | 2002-06-29 02:38:50 +0000 | [diff] [blame] | 94 | \input{libtextwrap} |
Fred Drake | 98f8a3d | 2000-04-06 14:25:28 +0000 | [diff] [blame] | 95 | \input{libcodecs} |
Fred Drake | fb79ffa | 2000-06-13 20:51:29 +0000 | [diff] [blame] | 96 | \input{libunicodedata} |
Martin v. Löwis | 2548c73 | 2003-04-18 10:39:54 +0000 | [diff] [blame] | 97 | \input{libstringprep} |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 98 | \input{libfpformat} |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 99 | |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 100 | |
| 101 | \input{datatypes} % Data types and structures |
| 102 | \input{libdatetime} |
| 103 | \input{libcalendar} |
Raymond Hettinger | dd256d9 | 2004-01-29 07:35:45 +0000 | [diff] [blame] | 104 | \input{libcollections} |
Guido van Rossum | 9751216 | 2002-08-02 18:03:24 +0000 | [diff] [blame] | 105 | \input{libheapq} |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 106 | \input{libbisect} |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 107 | \input{libarray} |
Raymond Hettinger | 584cb19 | 2002-08-23 15:18:38 +0000 | [diff] [blame] | 108 | \input{libsets} |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 109 | \input{libsched} |
| 110 | \input{libmutex} |
| 111 | \input{libqueue} |
| 112 | \input{libweakref} |
| 113 | \input{libuserdict} |
| 114 | |
| 115 | % General object services |
| 116 | % XXX intro |
| 117 | \input{libtypes} |
| 118 | \input{libnew} |
| 119 | \input{libcopy} |
| 120 | \input{libpprint} |
| 121 | \input{librepr} |
| 122 | |
| 123 | |
| 124 | \input{numeric} % Numeric/Mathematical modules |
| 125 | \input{libmath} |
| 126 | \input{libcmath} |
| 127 | \input{libdecimal} |
| 128 | \input{librandom} |
| 129 | |
| 130 | % Functions, Functional, Generators and Iterators |
| 131 | % XXX intro functional |
Raymond Hettinger | 96ef811 | 2003-02-01 00:10:11 +0000 | [diff] [blame] | 132 | \input{libitertools} |
Raymond Hettinger | 9c323f8 | 2005-02-28 19:39:44 +0000 | [diff] [blame] | 133 | \input{libfunctional} |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 134 | \input{liboperator} % from runtime - better with itertools and functional |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 135 | |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 136 | |
| 137 | % ============= |
| 138 | % DATA FORMATS |
| 139 | % ============= |
| 140 | |
| 141 | % Big move - include all the markup and internet formats here |
| 142 | |
| 143 | % MIME & email stuff |
| 144 | \input{netdata} % Internet Data Handling |
| 145 | \input{email} |
| 146 | \input{libmailcap} |
| 147 | \input{libmailbox} |
| 148 | \input{libmhlib} |
| 149 | \input{libmimetools} |
| 150 | \input{libmimetypes} |
| 151 | \input{libmimewriter} |
| 152 | \input{libmimify} |
| 153 | \input{libmultifile} |
| 154 | \input{librfc822} |
| 155 | |
| 156 | % encoding stuff |
| 157 | \input{libbase64} |
| 158 | \input{libbinascii} |
| 159 | \input{libbinhex} |
| 160 | \input{libquopri} |
| 161 | \input{libuu} |
| 162 | |
| 163 | \input{markup} % Structured Markup Processing Tools |
| 164 | \input{libhtmlparser} |
| 165 | \input{libsgmllib} |
| 166 | \input{libhtmllib} |
| 167 | \input{libpyexpat} |
| 168 | \input{xmldom} |
| 169 | \input{xmldomminidom} |
| 170 | \input{xmldompulldom} |
| 171 | \input{xmlsax} |
| 172 | \input{xmlsaxhandler} |
| 173 | \input{xmlsaxutils} |
| 174 | \input{xmlsaxreader} |
| 175 | % \input{libxmllib} |
| 176 | |
| 177 | \input{fileformats} % Miscellaneous file formats |
| 178 | \input{libcsv} |
| 179 | \input{libcfgparser} |
| 180 | \input{librobotparser} |
| 181 | \input{libnetrc} |
| 182 | \input{libxdrlib} |
| 183 | |
| 184 | \input{libcrypto} % Cryptographic Services |
| 185 | \input{libhashlib} |
| 186 | \input{libhmac} |
| 187 | \input{libmd5} |
| 188 | \input{libsha} |
| 189 | |
| 190 | % ============= |
| 191 | % FILE & DATABASE STORAGE |
| 192 | % ============= |
| 193 | |
| 194 | \input{filesys} % File/directory support |
Fred Drake | 7c30de6 | 2001-02-22 21:25:20 +0000 | [diff] [blame] | 195 | \input{libposixpath} % os.path |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 196 | \input{libfileinput} |
Fred Drake | 5254a6d | 1999-04-22 15:01:44 +0000 | [diff] [blame] | 197 | \input{libstat} |
Fred Drake | 4755e7d | 1999-06-21 18:25:49 +0000 | [diff] [blame] | 198 | \input{libstatvfs} |
Fred Drake | adf2dbf | 1999-10-29 17:24:12 +0000 | [diff] [blame] | 199 | \input{libfilecmp} |
Guido van Rossum | dc46c7f | 1995-03-01 15:38:16 +0000 | [diff] [blame] | 200 | \input{libtempfile} |
Guido van Rossum | b6a8026 | 1997-03-25 22:09:18 +0000 | [diff] [blame] | 201 | \input{libglob} |
Guido van Rossum | e76b7a8 | 1997-04-27 21:25:52 +0000 | [diff] [blame] | 202 | \input{libfnmatch} |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 203 | \input{liblinecache} |
Fred Drake | 449e18f | 1998-12-28 20:16:58 +0000 | [diff] [blame] | 204 | \input{libshutil} |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 205 | \input{libdircache} |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 206 | |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 207 | |
| 208 | \input{archiving} % Data compression and archiving |
Guido van Rossum | dfb4120 | 1997-04-30 19:40:10 +0000 | [diff] [blame] | 209 | \input{libzlib} |
Guido van Rossum | 0fcbe8d | 1997-07-17 16:27:42 +0000 | [diff] [blame] | 210 | \input{libgzip} |
Gustavo Niemeyer | f8ca836 | 2002-11-05 16:50:05 +0000 | [diff] [blame] | 211 | \input{libbz2} |
Fred Drake | 3c9f936 | 2000-03-31 17:51:10 +0000 | [diff] [blame] | 212 | \input{libzipfile} |
Neal Norwitz | 051314f | 2003-01-07 22:36:04 +0000 | [diff] [blame] | 213 | \input{libtarfile} |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 214 | |
| 215 | |
| 216 | \input{persistence} % Persistent storage |
| 217 | \input{libpickle} |
| 218 | \input{libcopyreg} % really copy_reg % from runtime... |
| 219 | \input{libshelve} |
| 220 | \input{libmarshal} |
| 221 | \input{libanydbm} |
| 222 | \input{libwhichdb} |
| 223 | \input{libdbm} |
| 224 | \input{libgdbm} |
| 225 | \input{libdbhash} |
| 226 | \input{libbsddb} |
| 227 | \input{libdumbdbm} |
| 228 | |
| 229 | |
| 230 | % ============= |
| 231 | % OS |
| 232 | % ============= |
| 233 | |
| 234 | |
| 235 | \input{liballos} % Generic Operating System Services |
| 236 | \input{libos} |
| 237 | \input{libtime} |
| 238 | \input{liboptparse} |
| 239 | \input{libgetopt} |
| 240 | \input{liblogging} |
| 241 | \input{libgetpass} |
| 242 | \input{libcurses} |
| 243 | \input{libascii} % curses.ascii |
| 244 | \input{libcursespanel} |
| 245 | \input{libplatform} |
| 246 | \input{liberrno} |
| 247 | |
| 248 | \input{libsomeos} % Optional Operating System Services |
| 249 | \input{libselect} |
| 250 | \input{libthread} |
| 251 | \input{libthreading} |
| 252 | \input{libdummythread} |
| 253 | \input{libdummythreading} |
| 254 | \input{libmmap} |
Fred Drake | 14ea85f | 2000-07-06 04:47:25 +0000 | [diff] [blame] | 255 | \input{libreadline} |
Fred Drake | 4755e7d | 1999-06-21 18:25:49 +0000 | [diff] [blame] | 256 | \input{librlcompleter} |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 257 | |
Fred Drake | 7c30de6 | 2001-02-22 21:25:20 +0000 | [diff] [blame] | 258 | \input{libunix} % UNIX Specific Services |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 259 | \input{libposix} |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 260 | \input{libpwd} |
Martin v. Löwis | c300175 | 2005-01-23 09:27:24 +0000 | [diff] [blame] | 261 | \input{libspwd} |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 262 | \input{libgrp} |
Guido van Rossum | 5c6e373 | 1996-04-10 16:18:20 +0000 | [diff] [blame] | 263 | \input{libcrypt} |
Fred Drake | 44a7a7c | 1999-07-01 20:39:59 +0000 | [diff] [blame] | 264 | \input{libdl} |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 265 | \input{libtermios} |
Fred Drake | 1b2dc90 | 1999-06-23 17:29:02 +0000 | [diff] [blame] | 266 | \input{libtty} |
Fred Drake | abc64b7 | 1999-06-29 18:12:22 +0000 | [diff] [blame] | 267 | \input{libpty} |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 268 | \input{libfcntl} |
Fred Drake | 4755e7d | 1999-06-21 18:25:49 +0000 | [diff] [blame] | 269 | \input{libpipes} |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 270 | \input{libposixfile} |
Guido van Rossum | 3c7b2dc | 1996-12-18 18:37:05 +0000 | [diff] [blame] | 271 | \input{libresource} |
Fred Drake | e4d7818 | 1999-06-27 15:02:37 +0000 | [diff] [blame] | 272 | \input{libnis} |
Guido van Rossum | fbe34fa | 1995-10-09 20:49:57 +0000 | [diff] [blame] | 273 | \input{libsyslog} |
Fred Drake | 4fd1292 | 1997-06-12 16:05:46 +0000 | [diff] [blame] | 274 | \input{libcommands} |
Guido van Rossum | df804f8 | 1995-03-02 12:38:39 +0000 | [diff] [blame] | 275 | |
Guido van Rossum | df804f8 | 1995-03-02 12:38:39 +0000 | [diff] [blame] | 276 | |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 277 | % ============= |
| 278 | % NETWORK & COMMUNICATIONS |
| 279 | % ============= |
| 280 | |
| 281 | \input{ipc} % Interprocess communication/networking |
| 282 | \input{libsubprocess} |
| 283 | \input{libsocket} |
| 284 | \input{libsignal} |
| 285 | \input{libpopen2} |
| 286 | \input{libasyncore} |
| 287 | \input{libasynchat} |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 288 | |
Fred Drake | 7c30de6 | 2001-02-22 21:25:20 +0000 | [diff] [blame] | 289 | \input{internet} % Internet Protocols |
Fred Drake | e4dbb86 | 2000-07-07 03:36:12 +0000 | [diff] [blame] | 290 | \input{libwebbrowser} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 291 | \input{libcgi} |
Fred Drake | d2a557e | 2001-12-04 22:48:17 +0000 | [diff] [blame] | 292 | \input{libcgitb} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 293 | \input{liburllib} |
Fred Drake | 7606e4d | 2001-03-01 19:54:29 +0000 | [diff] [blame] | 294 | \input{liburllib2} |
Guido van Rossum | cca8d2b | 1995-03-22 15:48:46 +0000 | [diff] [blame] | 295 | \input{libhttplib} |
Guido van Rossum | 817a842 | 1995-02-16 16:28:22 +0000 | [diff] [blame] | 296 | \input{libftplib} |
| 297 | \input{libgopherlib} |
Fred Drake | a468404 | 1998-04-24 20:49:02 +0000 | [diff] [blame] | 298 | \input{libpoplib} |
Fred Drake | 1e0f8bf | 1998-04-11 04:27:07 +0000 | [diff] [blame] | 299 | \input{libimaplib} |
Guido van Rossum | 817a842 | 1995-02-16 16:28:22 +0000 | [diff] [blame] | 300 | \input{libnntplib} |
Guido van Rossum | 8668e8e | 1998-06-28 17:55:53 +0000 | [diff] [blame] | 301 | \input{libsmtplib} |
Fred Drake | 2363e8f | 2004-07-11 16:25:25 +0000 | [diff] [blame] | 302 | \input{libsmtpd} |
Fred Drake | 658cef0 | 1999-03-15 15:44:18 +0000 | [diff] [blame] | 303 | \input{libtelnetlib} |
Guido van Rossum | 817a842 | 1995-02-16 16:28:22 +0000 | [diff] [blame] | 304 | \input{liburlparse} |
Fred Drake | f44c485 | 1998-08-07 15:58:31 +0000 | [diff] [blame] | 305 | \input{libsocksvr} |
| 306 | \input{libbasehttp} |
Fred Drake | c46864e | 1999-06-14 19:49:50 +0000 | [diff] [blame] | 307 | \input{libsimplehttp} |
| 308 | \input{libcgihttp} |
Martin v. Löwis | 2a6ba90 | 2004-05-31 18:22:40 +0000 | [diff] [blame] | 309 | \input{libcookielib} |
Fred Drake | 15446d3 | 2000-08-19 16:55:31 +0000 | [diff] [blame] | 310 | \input{libcookie} |
Fred Drake | 7988e02 | 2001-09-28 22:03:40 +0000 | [diff] [blame] | 311 | \input{libxmlrpclib} |
| 312 | \input{libsimplexmlrpc} |
Martin v. Löwis | 281b2c6 | 2003-04-18 21:04:39 +0000 | [diff] [blame] | 313 | \input{libdocxmlrpc} |
Fred Drake | f44c485 | 1998-08-07 15:58:31 +0000 | [diff] [blame] | 314 | |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 315 | % ============= |
| 316 | % MULTIMEDIA |
| 317 | % ============= |
Fred Drake | b531618 | 2000-07-05 02:24:39 +0000 | [diff] [blame] | 318 | |
Fred Drake | 7c30de6 | 2001-02-22 21:25:20 +0000 | [diff] [blame] | 319 | \input{libmm} % Multimedia Services |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 320 | \input{libaudioop} |
| 321 | \input{libimageop} |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 322 | \input{libaifc} |
Fred Drake | af81a50 | 1999-06-23 13:34:22 +0000 | [diff] [blame] | 323 | \input{libsunau} |
Fred Drake | 26da284 | 1999-06-17 15:12:16 +0000 | [diff] [blame] | 324 | \input{libwave} |
Fred Drake | 707f8e6 | 1999-06-22 18:50:06 +0000 | [diff] [blame] | 325 | \input{libchunk} |
Fred Drake | 4ae5269 | 1999-04-19 21:21:28 +0000 | [diff] [blame] | 326 | \input{libcolorsys} |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 327 | \input{librgbimg} |
Guido van Rossum | 40006cf | 1996-08-19 22:58:03 +0000 | [diff] [blame] | 328 | \input{libimghdr} |
Fred Drake | 60adb36 | 1999-01-05 23:09:12 +0000 | [diff] [blame] | 329 | \input{libsndhdr} |
Greg Ward | 41a28e3 | 2003-03-10 00:07:14 +0000 | [diff] [blame] | 330 | \input{libossaudiodev} |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 331 | |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 332 | % Tkinter is a chapter in its own right. |
Fred Drake | 5355686 | 2001-11-15 17:25:29 +0000 | [diff] [blame] | 333 | \input{tkinter} |
Fred Drake | 5355686 | 2001-11-15 17:25:29 +0000 | [diff] [blame] | 334 | |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 335 | % % Internationalization |
| 336 | \input{i18n} |
| 337 | \input{libgettext} |
| 338 | \input{liblocale} |
| 339 | |
| 340 | % ============= |
| 341 | % PROGRAM FRAMEWORKS |
| 342 | % ============= |
| 343 | \input{frameworks} |
| 344 | \input{libcmd} |
| 345 | \input{libshlex} |
| 346 | |
| 347 | |
| 348 | % ============= |
| 349 | % DEVELOPMENT TOOLS |
| 350 | % ============= |
| 351 | % % Software development support |
| 352 | \input{development} |
| 353 | \input{libpydoc} |
| 354 | \input{libdoctest} |
| 355 | \input{libunittest} |
| 356 | \input{libtest} |
| 357 | |
| 358 | \input{libpdb} % The Python Debugger |
| 359 | |
| 360 | \input{libprofile} % The Python Profiler |
Armin Rigo | a871ef2 | 2006-02-08 12:53:56 +0000 | [diff] [blame] | 361 | \input{libhotshot} % unmaintained C profiler |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 362 | \input{libtimeit} |
| 363 | |
| 364 | |
| 365 | % ============= |
| 366 | % PYTHON ENGINE |
| 367 | % ============= |
| 368 | |
| 369 | % Runtime services |
| 370 | \input{libpython} % Python Runtime Services |
| 371 | \input{libsys} |
| 372 | \input{libbltin} % really __builtin__ |
| 373 | \input{libmain} % really __main__ |
| 374 | \input{libwarnings} |
| 375 | \input{libatexit} |
| 376 | \input{libtraceback} |
| 377 | \input{libfuture} % really __future__ |
| 378 | \input{libgc} |
| 379 | \input{libinspect} |
| 380 | \input{libsite} |
| 381 | \input{libuser} |
| 382 | \input{libfpectl} |
| 383 | |
| 384 | |
| 385 | \input{custominterp} % Custom interpreter |
| 386 | \input{libcode} |
| 387 | \input{libcodeop} |
Fred Drake | ed13b4a | 2000-08-03 21:18:18 +0000 | [diff] [blame] | 388 | \input{librestricted} % Restricted Execution |
| 389 | \input{librexec} |
| 390 | \input{libbastion} |
| 391 | |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 392 | |
| 393 | \input{modules} % Importing Modules |
| 394 | \input{libimp} |
| 395 | \input{libzipimport} |
| 396 | \input{libpkgutil} |
| 397 | \input{libmodulefinder} |
| 398 | |
| 399 | |
| 400 | % ============= |
| 401 | % PYTHON LANGUAGE & COMPILER |
| 402 | % ============= |
| 403 | |
Fred Drake | 7c30de6 | 2001-02-22 21:25:20 +0000 | [diff] [blame] | 404 | \input{language} % Python Language Services |
Fred Drake | ed13b4a | 2000-08-03 21:18:18 +0000 | [diff] [blame] | 405 | \input{libparser} |
| 406 | \input{libsymbol} |
| 407 | \input{libtoken} |
| 408 | \input{libkeyword} |
| 409 | \input{libtokenize} |
| 410 | \input{libtabnanny} |
| 411 | \input{libpyclbr} |
Fred Drake | 7c30de6 | 2001-02-22 21:25:20 +0000 | [diff] [blame] | 412 | \input{libpycompile} % really py_compile |
Fred Drake | ed13b4a | 2000-08-03 21:18:18 +0000 | [diff] [blame] | 413 | \input{libcompileall} |
| 414 | \input{libdis} |
Andrew M. Kuchling | 8def876 | 2004-08-07 16:53:59 +0000 | [diff] [blame] | 415 | \input{libpickletools} |
Fred Drake | d61e3ea | 2001-07-24 16:20:13 +0000 | [diff] [blame] | 416 | \input{distutils} |
Fred Drake | ed13b4a | 2000-08-03 21:18:18 +0000 | [diff] [blame] | 417 | |
Fred Drake | 33f4d6d | 2001-09-27 20:11:07 +0000 | [diff] [blame] | 418 | \input{compiler} % compiler package |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 419 | \input{libast} |
Fred Drake | 33f4d6d | 2001-09-27 20:11:07 +0000 | [diff] [blame] | 420 | |
Andrew M. Kuchling | b164daf | 2005-12-22 20:34:09 +0000 | [diff] [blame] | 421 | \input{libmisc} % Miscellaneous Services |
| 422 | \input{libformatter} |
| 423 | |
| 424 | % ============= |
| 425 | % OTHER PLATFORM-SPECIFIC STUFF |
| 426 | % ============= |
| 427 | |
Fred Drake | 7c30de6 | 2001-02-22 21:25:20 +0000 | [diff] [blame] | 428 | %\input{libamoeba} % AMOEBA ONLY |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 429 | |
Fred Drake | 7c30de6 | 2001-02-22 21:25:20 +0000 | [diff] [blame] | 430 | %\input{libstdwin} % STDWIN ONLY |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 431 | |
Fred Drake | 7c30de6 | 2001-02-22 21:25:20 +0000 | [diff] [blame] | 432 | \input{libsgi} % SGI IRIX ONLY |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 433 | \input{libal} |
Sjoerd Mullender | ffd6de1 | 1995-03-28 11:56:52 +0000 | [diff] [blame] | 434 | \input{libcd} |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 435 | \input{libfl} |
| 436 | \input{libfm} |
| 437 | \input{libgl} |
| 438 | \input{libimgfile} |
Fred Drake | 9ea3e36 | 1999-01-20 15:55:20 +0000 | [diff] [blame] | 439 | \input{libjpeg} |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 440 | %\input{libpanel} |
| 441 | |
Fred Drake | 7c30de6 | 2001-02-22 21:25:20 +0000 | [diff] [blame] | 442 | \input{libsun} % SUNOS ONLY |
Fred Drake | 83c1a39 | 1998-02-19 18:59:48 +0000 | [diff] [blame] | 443 | \input{libsunaudio} |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 444 | |
Fred Drake | 7c30de6 | 2001-02-22 21:25:20 +0000 | [diff] [blame] | 445 | \input{windows} % MS Windows ONLY |
Fred Drake | c7b72db | 1999-02-16 19:18:38 +0000 | [diff] [blame] | 446 | \input{libmsvcrt} |
Fred Drake | d1a65ff | 2000-06-07 04:07:48 +0000 | [diff] [blame] | 447 | \input{libwinreg} |
Fred Drake | c7b72db | 1999-02-16 19:18:38 +0000 | [diff] [blame] | 448 | \input{libwinsound} |
| 449 | |
Fred Drake | ed773ef | 2000-09-21 21:35:22 +0000 | [diff] [blame] | 450 | \appendix |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 451 | \input{libundoc} |
Fred Drake | 36154b2 | 2001-02-01 05:21:46 +0000 | [diff] [blame] | 452 | |
| 453 | %\chapter{Obsolete Modules} |
| 454 | %\input{libcmpcache} |
| 455 | %\input{libcmp} |
| 456 | %\input{libni} |
Fred Drake | 36154b2 | 2001-02-01 05:21:46 +0000 | [diff] [blame] | 457 | %\input{libregex} |
| 458 | %\input{libregsub} |
Fred Drake | 36154b2 | 2001-02-01 05:21:46 +0000 | [diff] [blame] | 459 | |
Fred Drake | ed773ef | 2000-09-21 21:35:22 +0000 | [diff] [blame] | 460 | \chapter{Reporting Bugs} |
| 461 | \input{reportingbugs} |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 462 | |
Fred Drake | d5df09c | 2001-06-20 21:37:34 +0000 | [diff] [blame] | 463 | \chapter{History and License} |
| 464 | \input{license} |
| 465 | |
Fred Drake | f3aa0e0 | 1998-03-17 06:23:13 +0000 | [diff] [blame] | 466 | % |
| 467 | % The ugly "%begin{latexonly}" pseudo-environments are really just to |
| 468 | % keep LaTeX2HTML quiet during the \renewcommand{} macros; they're |
| 469 | % not really valuable. |
| 470 | % |
Fred Drake | 0b1337d | 1998-01-02 02:59:09 +0000 | [diff] [blame] | 471 | |
Fred Drake | f3aa0e0 | 1998-03-17 06:23:13 +0000 | [diff] [blame] | 472 | %begin{latexonly} |
| 473 | \renewcommand{\indexname}{Module Index} |
| 474 | %end{latexonly} |
Fred Drake | 7c30de6 | 2001-02-22 21:25:20 +0000 | [diff] [blame] | 475 | \input{modlib.ind} % Module Index |
Fred Drake | f3aa0e0 | 1998-03-17 06:23:13 +0000 | [diff] [blame] | 476 | |
| 477 | %begin{latexonly} |
Fred Drake | 0b1337d | 1998-01-02 02:59:09 +0000 | [diff] [blame] | 478 | \renewcommand{\indexname}{Index} |
Fred Drake | f3aa0e0 | 1998-03-17 06:23:13 +0000 | [diff] [blame] | 479 | %end{latexonly} |
Fred Drake | 7c30de6 | 2001-02-22 21:25:20 +0000 | [diff] [blame] | 480 | \input{lib.ind} % Index |
Guido van Rossum | 515834a | 1991-01-22 11:45:29 +0000 | [diff] [blame] | 481 | |
| 482 | \end{document} |