Staging
v0.5.1
https://github.com/python/cpython
Revision 0c5e3c8d6a4a37a93c0c3f1543cc0699358301ff authored by Guido van Rossum on 31 July 1996, 17:49:01 UTC, committed by Guido van Rossum on 31 July 1996, 17:49:01 UTC
1 parent 276de58
Raw File
Tip revision: 0c5e3c8d6a4a37a93c0c3f1543cc0699358301ff authored by Guido van Rossum on 31 July 1996, 17:49:01 UTC
DESTLIB and MACHDESTLIB are now derived from variables set by the Makefile.
Tip revision: 0c5e3c8
libmac.tex
\chapter{Macintosh Specific Services}

The modules in this chapter are available on the Apple Macintosh only.

Aside from the modules described here there are also interfaces to
various MacOS toolboxes, which are currently not extensively
described. The toolboxes for which modules exist are:
\code{AE} (Apple Events),
\code{Cm} (Component Manager),
\code{Ctl} (Control Manager),
\code{Dlg} (Dialog Manager),
\code{Evt} (Event Manager),
\code{Fm} (Font Manager),
\code{List} (List Manager),
\code{Menu} (Moenu Manager),
\code{Qd} (QuickDraw),
\code{Qt} (QuickTime),
\code{Res} (Resource Manager and Handles),
\code{Scrap} (Scrap Manager),
\code{Snd} (Sound Manager),
\code{TE} (TextEdit),
\code{Waste} (non-Apple TextEdit replacement) and
\code{Win} (Window Manager).

If applicable the module will define a number of Python objects for
the various structures declared by the toolbox, and operations will be
implemented as methods of the object. Other operations will be
implemented as functions in the module. Not all operations possible in
C will also be possible in Python (callbacks are often a problem), and
parameters will occasionally be different in Python (input and output
buffers, especially). All methods and functions have a \code{__doc__}
string describing their arguments and return values, and for
additional description you are referred to Inside Mac or similar
works.

\section{Built-in Module \sectcode{mac}}

\bimodindex{mac}
This module provides a subset of the operating system dependent
functionality provided by the optional built-in module \code{posix}.
It is best accessed through the more portable standard module
\code{os}.

The following functions are available in this module:
\code{chdir},
\code{close},
\code{dup},
\code{fdopen},
\code{getcwd},
\code{lseek},
\code{listdir},
\code{mkdir},
\code{open},
\code{read},
\code{rename},
\code{rmdir},
\code{stat},
\code{sync},
\code{unlink},
\code{write},
as well as the exception \code{error}.

\section{Standard Module \sectcode{macpath}}

\stmodindex{macpath}
This module provides a subset of the pathname manipulation functions
available from the optional standard module \code{posixpath}.  It is
best accessed through the more portable standard module \code{os}, as
\code{os.path}.

The following functions are available in this module:
\code{normcase},
\code{normpath},
\code{isabs},
\code{join},
\code{split},
\code{isdir},
\code{isfile},
\code{walk},
\code{exists}.
For other functions available in \code{posixpath} dummy counterparts
are available.
back to top