diff options
author | Guido van Rossum <guido@python.org> | 1995-03-17 16:07:09 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-03-17 16:07:09 (GMT) |
commit | 470be14c8aa23a35a1f4d1f1260a66a85d3f3cd9 (patch) | |
tree | 4fd0b8eda81e63366598e55362ceac85adafccb4 /Doc/mac/libmacfs.tex | |
parent | 7760cdea81166b7741561043c58dae171811fb2f (diff) | |
download | cpython-470be14c8aa23a35a1f4d1f1260a66a85d3f3cd9.zip cpython-470be14c8aa23a35a1f4d1f1260a66a85d3f3cd9.tar.gz cpython-470be14c8aa23a35a1f4d1f1260a66a85d3f3cd9.tar.bz2 |
mass changes; fix titles; add examples; correct typos; clarifications;
unified style; etc.
Diffstat (limited to 'Doc/mac/libmacfs.tex')
-rw-r--r-- | Doc/mac/libmacfs.tex | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/Doc/mac/libmacfs.tex b/Doc/mac/libmacfs.tex index 80ec76d..74d1970 100644 --- a/Doc/mac/libmacfs.tex +++ b/Doc/mac/libmacfs.tex @@ -1,4 +1,4 @@ -\section{Built-in module \sectcode{macfs}} +\section{Built-in Module \sectcode{macfs}} \bimodindex{macfs} \renewcommand{\indexsubitem}{(in module macfs)} @@ -18,11 +18,14 @@ Create an FSSpec object for the specified file. \begin{funcdesc}{RawFSSpec}{data} Create an FSSpec object given the raw data for the C structure for the -FSSpec. +FSSpec as a string. This is mainly useful if you have obtained an +FSSpec structure over a network. \end{funcdesc} \begin{funcdesc}{RawAlias}{data} -Create an Alias object given the raw data for the alias. +Create an Alias object given the raw data for the C structure for the +alias as a string. This is mainly useful if you have obtained an +FSSpec structure over a network. \end{funcdesc} \begin{funcdesc}{ResolveAliasFile}{file} @@ -56,12 +59,13 @@ dialog. Return an FSSpec object and a success-indicator. \subsection{FSSpec objects} -\renewcommand{\indexsubitem}{(FSSpec object method)} +\renewcommand{\indexsubitem}{(FSSpec object attribute)} \begin{datadesc}{data} The raw data from the FSSpec object, suitable for passing to other applications, for instance. \end{datadesc} +\renewcommand{\indexsubitem}{(FSSpec object method)} \begin{funcdesc}{as_pathname}{} Return the full pathname of the file described by the FSSpec object. \end{funcdesc} @@ -91,12 +95,13 @@ Set the 4-char creator and type of the file. \subsection{alias objects} -\renewcommand{\indexsubitem}{(alias object method)} +\renewcommand{\indexsubitem}{(alias object attribute)} \begin{datadesc}{data} The raw data for the Alias record, suitable for storing in a resource or transmitting to other programs. \end{datadesc} +\renewcommand{\indexsubitem}{(alias object method)} \begin{funcdesc}{Resolve}{\optional{file}} Resolve the alias. If the alias was created as a relative alias you should pass the file relative to which it is. Return the FSSpec for |