Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 1 | \chapter{Undocumented Modules \label{undoc}} |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 2 | |
| 3 | Here's a quick listing of modules that are currently undocumented, but |
| 4 | that should be documented. Feel free to contribute documentation for |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 5 | them! (Send via email to \email{python-docs@python.org}.) |
| 6 | |
| 7 | The idea and original contents for this chapter were taken |
| 8 | from a posting by Fredrik Lundh; the specific contents of this chapter |
| 9 | have been substantially revised. |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 10 | |
| 11 | |
Fred Drake | 16e81f4 | 1999-02-24 19:57:14 +0000 | [diff] [blame] | 12 | \section{Frameworks} |
| 13 | |
| 14 | Frameworks tend to be harder to document, but are well worth the |
| 15 | effort spent. |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 16 | |
Fred Drake | 272fb3a | 1998-04-07 14:15:28 +0000 | [diff] [blame] | 17 | \begin{description} |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 18 | \item[\module{Tkinter}] |
Fred Drake | 37f1574 | 1999-11-10 16:21:37 +0000 | [diff] [blame] | 19 | --- Interface to Tcl/Tk for graphical user interfaces; Fredrik Lundh |
| 20 | is working on this one! See |
Fred Drake | d4d4ba3 | 1999-12-01 18:44:09 +0000 | [diff] [blame] | 21 | \citetitle[http://www.pythonware.com/library.htm]{An Introduction to |
| 22 | Tkinter} at \url{http://www.pythonware.com/library.htm} for on-line |
Fred Drake | 6f49e0a | 1999-06-18 19:58:59 +0000 | [diff] [blame] | 23 | reference material. |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 24 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 25 | \item[\module{Tkdnd}] |
Fred Drake | 95638f5 | 1998-04-14 04:55:43 +0000 | [diff] [blame] | 26 | --- Drag-and-drop support for \module{Tkinter}. |
| 27 | |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 28 | \item[\module{turtle}] |
| 29 | --- Turtle graphics in a Tk window. |
| 30 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 31 | \item[\module{test}] |
Fred Drake | 211f22c | 1998-08-11 18:13:31 +0000 | [diff] [blame] | 32 | --- Regression testing framework. This is used for the Python |
| 33 | regression test, but is useful for other Python libraries as well. |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 34 | This is a package rather than a single module. |
Fred Drake | 272fb3a | 1998-04-07 14:15:28 +0000 | [diff] [blame] | 35 | \end{description} |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 36 | |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 37 | |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 38 | \section{Miscellaneous useful utilities} |
| 39 | |
Fred Drake | ae4d5c2 | 1999-06-23 14:56:13 +0000 | [diff] [blame] | 40 | Some of these are very old and/or not very robust; marked with ``hmm.'' |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 41 | |
Fred Drake | 272fb3a | 1998-04-07 14:15:28 +0000 | [diff] [blame] | 42 | \begin{description} |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 43 | \item[\module{bdb}] |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 44 | --- A generic Python debugger base class (used by pdb). |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 45 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 46 | \item[\module{ihooks}] |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 47 | --- Import hook support (for \refmodule{rexec}; may become obsolete). |
Fred Drake | bf781a9 | 2001-08-14 11:38:35 +0000 | [diff] [blame] | 48 | |
| 49 | \item[\module{smtpd}] |
| 50 | --- An SMTP daemon implementation which meets the minimum requirements |
| 51 | for \rfc{821} conformance. |
Fred Drake | 272fb3a | 1998-04-07 14:15:28 +0000 | [diff] [blame] | 52 | \end{description} |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 53 | |
Guido van Rossum | 9085822 | 1997-08-15 02:52:46 +0000 | [diff] [blame] | 54 | |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 55 | \section{Platform specific modules} |
| 56 | |
Fred Drake | 6f49e0a | 1999-06-18 19:58:59 +0000 | [diff] [blame] | 57 | These modules are used to implement the \refmodule{os.path} module, |
| 58 | and are not documented beyond this mention. There's little need to |
| 59 | document these. |
Fred Drake | 560bcae | 1999-02-02 18:59:58 +0000 | [diff] [blame] | 60 | |
| 61 | \begin{description} |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 62 | \item[\module{dospath}] |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 63 | --- Implementation of \module{os.path} on MS-DOS. |
Fred Drake | 560bcae | 1999-02-02 18:59:58 +0000 | [diff] [blame] | 64 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 65 | \item[\module{ntpath}] |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 66 | --- Implementation on \module{os.path} on Win32, Win64, WinCE, and |
| 67 | OS/2 platforms. |
Fred Drake | 560bcae | 1999-02-02 18:59:58 +0000 | [diff] [blame] | 68 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 69 | \item[\module{posixpath}] |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 70 | --- Implementation on \module{os.path} on \POSIX. |
Fred Drake | 272fb3a | 1998-04-07 14:15:28 +0000 | [diff] [blame] | 71 | \end{description} |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 72 | |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 73 | |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 74 | \section{Multimedia} |
| 75 | |
Fred Drake | 272fb3a | 1998-04-07 14:15:28 +0000 | [diff] [blame] | 76 | \begin{description} |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 77 | \item[\module{audiodev}] |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 78 | --- Platform-independent API for playing audio data. |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 79 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 80 | \item[\module{sunaudio}] |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 81 | --- Interpret Sun audio headers (may become obsolete or a tool/demo). |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 82 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 83 | \item[\module{toaiff}] |
Fred Drake | 6f49e0a | 1999-06-18 19:58:59 +0000 | [diff] [blame] | 84 | --- Convert "arbitrary" sound files to AIFF files; should probably |
Fred Drake | ae4d5c2 | 1999-06-23 14:56:13 +0000 | [diff] [blame] | 85 | become a tool or demo. Requires the external program \program{sox}. |
Fred Drake | 272fb3a | 1998-04-07 14:15:28 +0000 | [diff] [blame] | 86 | \end{description} |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 87 | |
| 88 | |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 89 | \section{Obsolete \label{obsolete-modules}} |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 90 | |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 91 | These modules are not normally available for import; additional work |
| 92 | must be done to make them available. |
| 93 | |
| 94 | Those which are written in Python will be installed into the directory |
| 95 | \file{lib-old/} installed as part of the standard library. To use |
| 96 | these, the directory must be added to \code{sys.path}, possibly using |
| 97 | \envvar{PYTHONPATH}. |
| 98 | |
| 99 | Obsolete extension modules written in C are not built by default. |
| 100 | Under \UNIX, these must be enabled by uncommenting the appropriate |
| 101 | lines in \file{Modules/Setup} in the build tree and either rebuilding |
| 102 | Python if the modules are statically linked, or building and |
| 103 | installing the shared object if using dynamically-loaded extensions. |
| 104 | |
| 105 | % XXX need Windows instructions! |
Guido van Rossum | cfaf143 | 1997-07-16 15:48:20 +0000 | [diff] [blame] | 106 | |
Fred Drake | 272fb3a | 1998-04-07 14:15:28 +0000 | [diff] [blame] | 107 | \begin{description} |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 108 | \item[\module{addpack}] |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 109 | --- Alternate approach to packages. Use the built-in package support |
| 110 | instead. |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 111 | |
Fred Drake | a8052a3 | 1999-10-26 16:27:28 +0000 | [diff] [blame] | 112 | \item[\module{cmp}] |
Fred Drake | 47a27b6 | 1999-10-29 17:25:59 +0000 | [diff] [blame] | 113 | --- File comparison function. Use the newer \refmodule{filecmp} instead. |
Fred Drake | a8052a3 | 1999-10-26 16:27:28 +0000 | [diff] [blame] | 114 | |
| 115 | \item[\module{cmpcache}] |
| 116 | --- Caching version of the obsolete \module{cmp} module. Use the |
Fred Drake | 47a27b6 | 1999-10-29 17:25:59 +0000 | [diff] [blame] | 117 | newer \refmodule{filecmp} instead. |
Fred Drake | a8052a3 | 1999-10-26 16:27:28 +0000 | [diff] [blame] | 118 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 119 | \item[\module{codehack}] |
Fred Drake | 9ed1a0a | 1998-11-02 15:46:21 +0000 | [diff] [blame] | 120 | --- Extract function name or line number from a function |
Fred Drake | ae4d5c2 | 1999-06-23 14:56:13 +0000 | [diff] [blame] | 121 | code object (these are now accessible as attributes: |
| 122 | \member{co.co_name}, \member{func.func_name}, |
| 123 | \member{co.co_firstlineno}). |
Fred Drake | 9ed1a0a | 1998-11-02 15:46:21 +0000 | [diff] [blame] | 124 | |
Fred Drake | 2bb43a2 | 2000-02-03 15:27:26 +0000 | [diff] [blame] | 125 | \item[\module{dircmp}] |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 126 | --- Class to build directory diff tools on (may become a demo or tool). |
| 127 | \deprecated{2.0}{The \refmodule{filecmp} module replaces |
| 128 | \module{dircmp}.} |
Fred Drake | 2bb43a2 | 2000-02-03 15:27:26 +0000 | [diff] [blame] | 129 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 130 | \item[\module{dump}] |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 131 | --- Print python code that reconstructs a variable. |
Fred Drake | 46e1a32 | 1999-06-18 17:12:15 +0000 | [diff] [blame] | 132 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 133 | \item[\module{fmt}] |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 134 | --- Text formatting abstractions (too slow). |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 135 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 136 | \item[\module{lockfile}] |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 137 | --- Wrapper around FCNTL file locking (use |
| 138 | \function{fcntl.lockf()}/\function{flock()} instead; see \refmodule{fcntl}). |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 139 | |
Fred Drake | a8052a3 | 1999-10-26 16:27:28 +0000 | [diff] [blame] | 140 | \item[\module{newdir}] |
| 141 | --- New \function{dir()} function (the standard \function{dir()} is |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 142 | now just as good). |
Fred Drake | a8052a3 | 1999-10-26 16:27:28 +0000 | [diff] [blame] | 143 | |
| 144 | \item[\module{Para}] |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 145 | --- Helper for \module{fmt}. |
Fred Drake | a8052a3 | 1999-10-26 16:27:28 +0000 | [diff] [blame] | 146 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 147 | \item[\module{poly}] |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 148 | --- Polynomials. |
Fred Drake | 9ed1a0a | 1998-11-02 15:46:21 +0000 | [diff] [blame] | 149 | |
Fred Drake | 44774c9 | 2000-09-28 05:31:39 +0000 | [diff] [blame] | 150 | \item[\module{regex}] |
| 151 | --- Emacs-style regular expression support; may still be used in some |
| 152 | old code (extension module). Refer to the |
| 153 | \citetitle[http://www.python.org/doc/1.6/lib/module-regex.html]{Python |
| 154 | 1.6 Documentation} for documentation. |
| 155 | |
| 156 | \item[\module{regsub}] |
| 157 | --- Regular expression based string replacement utilities, for use |
| 158 | with \module{regex} (extension module). Refer to the |
| 159 | \citetitle[http://www.python.org/doc/1.6/lib/module-regsub.html]{Python |
| 160 | 1.6 Documentation} for documentation. |
| 161 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 162 | \item[\module{tb}] |
Fred Drake | 272fb3a | 1998-04-07 14:15:28 +0000 | [diff] [blame] | 163 | --- Print tracebacks, with a dump of local variables (use |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 164 | \function{pdb.pm()} or \refmodule{traceback} instead). |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 165 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 166 | \item[\module{timing}] |
Fred Drake | 3700b6f | 1998-08-07 16:02:28 +0000 | [diff] [blame] | 167 | --- Measure time intervals to high resolution (use |
| 168 | \function{time.clock()} instead). (This is an extension module.) |
Fred Drake | 9ed1a0a | 1998-11-02 15:46:21 +0000 | [diff] [blame] | 169 | |
Fred Drake | 4e6d09e | 2001-03-20 23:13:53 +0000 | [diff] [blame] | 170 | \item[\module{tzparse}] |
| 171 | --- Parse a timezone specification (unfinished; may disappear in the |
| 172 | future, and does not work when the \envvar{TZ} environment variable is |
| 173 | not set). |
| 174 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 175 | \item[\module{util}] |
Fred Drake | 4d5c87b | 1999-06-10 21:17:11 +0000 | [diff] [blame] | 176 | --- Useful functions that don't fit elsewhere. |
| 177 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 178 | \item[\module{whatsound}] |
Fred Drake | e36e4e6 | 1999-01-13 17:11:52 +0000 | [diff] [blame] | 179 | --- Recognize sound files; use \refmodule{sndhdr} instead. |
Fred Drake | 60adb36 | 1999-01-05 23:09:12 +0000 | [diff] [blame] | 180 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 181 | \item[\module{zmod}] |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 182 | --- Compute properties of mathematical ``fields.'' |
Fred Drake | 272fb3a | 1998-04-07 14:15:28 +0000 | [diff] [blame] | 183 | \end{description} |
Guido van Rossum | 61c2703 | 1997-07-18 21:08:07 +0000 | [diff] [blame] | 184 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 185 | |
Fred Drake | fffe5db | 2000-09-21 05:25:30 +0000 | [diff] [blame] | 186 | The following modules are obsolete, but are likely to re-surface as |
| 187 | tools or scripts: |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 188 | |
| 189 | \begin{description} |
| 190 | \item[\module{find}] |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 191 | --- Find files matching pattern in directory tree. |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 192 | |
| 193 | \item[\module{grep}] |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 194 | --- \program{grep} implementation in Python. |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 195 | |
| 196 | \item[\module{packmail}] |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 197 | --- Create a self-unpacking \UNIX{} shell archive. |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 198 | \end{description} |
| 199 | |
| 200 | |
Fred Drake | 20ca917 | 1998-04-09 14:32:28 +0000 | [diff] [blame] | 201 | The following modules were documented in previous versions of this |
Fred Drake | ae4d5c2 | 1999-06-23 14:56:13 +0000 | [diff] [blame] | 202 | manual, but are now considered obsolete. The source for the |
| 203 | documentation is still available as part of the documentation source |
| 204 | archive. |
Fred Drake | 20ca917 | 1998-04-09 14:32:28 +0000 | [diff] [blame] | 205 | |
| 206 | \begin{description} |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 207 | \item[\module{ni}] |
Fred Drake | 3700b6f | 1998-08-07 16:02:28 +0000 | [diff] [blame] | 208 | --- Import modules in ``packages.'' Basic package support is now |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 209 | built in. The built-in support is very similar to what is provided in |
| 210 | this module. |
Fred Drake | 20ca917 | 1998-04-09 14:32:28 +0000 | [diff] [blame] | 211 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 212 | \item[\module{rand}] |
Fred Drake | 20ca917 | 1998-04-09 14:32:28 +0000 | [diff] [blame] | 213 | --- Old interface to the random number generator. |
| 214 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 215 | \item[\module{soundex}] |
Fred Drake | 20ca917 | 1998-04-09 14:32:28 +0000 | [diff] [blame] | 216 | --- Algorithm for collapsing names which sound similar to a shared |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 217 | key. The specific algorithm doesn't seem to match any published |
| 218 | algorithm. (This is an extension module.) |
Fred Drake | 20ca917 | 1998-04-09 14:32:28 +0000 | [diff] [blame] | 219 | \end{description} |
| 220 | |
Guido van Rossum | 612316f | 1997-03-14 04:12:52 +0000 | [diff] [blame] | 221 | |
Fred Drake | 88fa962 | 2000-09-11 05:23:25 +0000 | [diff] [blame] | 222 | \section{SGI-specific Extension modules} |
Guido van Rossum | b9ee9c2 | 1997-06-02 17:34:02 +0000 | [diff] [blame] | 223 | |
Fred Drake | ae4d5c2 | 1999-06-23 14:56:13 +0000 | [diff] [blame] | 224 | The following are SGI specific, and may be out of touch with the |
| 225 | current version of reality. |
Guido van Rossum | 8d2893b | 1997-03-27 20:57:52 +0000 | [diff] [blame] | 226 | |
Fred Drake | 3700b6f | 1998-08-07 16:02:28 +0000 | [diff] [blame] | 227 | \begin{description} |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 228 | \item[\module{cl}] |
Fred Drake | 272fb3a | 1998-04-07 14:15:28 +0000 | [diff] [blame] | 229 | --- Interface to the SGI compression library. |
Guido van Rossum | 8d2893b | 1997-03-27 20:57:52 +0000 | [diff] [blame] | 230 | |
Fred Drake | e4694eb | 1999-07-01 20:42:57 +0000 | [diff] [blame] | 231 | \item[\module{sv}] |
Fred Drake | 272fb3a | 1998-04-07 14:15:28 +0000 | [diff] [blame] | 232 | --- Interface to the ``simple video'' board on SGI Indigo |
Guido van Rossum | 8d2893b | 1997-03-27 20:57:52 +0000 | [diff] [blame] | 233 | (obsolete hardware). |
Fred Drake | 3700b6f | 1998-08-07 16:02:28 +0000 | [diff] [blame] | 234 | \end{description} |