diff options
author | Fred Drake <fdrake@acm.org> | 1998-03-17 06:33:25 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-03-17 06:33:25 (GMT) |
commit | cce1090d49ba91cdc06c60d8a2af04d057abe7dc (patch) | |
tree | 8b866b9986508cfb7cec89ab4fb5e1c269756b8f /Doc/mac/libmacostools.tex | |
parent | c9a4438c16c66af5b196adf172fd3416ac4ec9d3 (diff) | |
download | cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.zip cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.gz cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.bz2 |
Change "\," to just "," in function signatures. This is easier to maintain,
works better with LaTeX2HTML, and allows some simplification of the python.sty
macros.
Diffstat (limited to 'Doc/mac/libmacostools.tex')
-rw-r--r-- | Doc/mac/libmacostools.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/mac/libmacostools.tex b/Doc/mac/libmacostools.tex index 1553b11..c4c5842 100644 --- a/Doc/mac/libmacostools.tex +++ b/Doc/mac/libmacostools.tex @@ -9,7 +9,7 @@ The \code{macostools} module defines the following functions: \setindexsubitem{(in module macostools)} -\begin{funcdesc}{copy}{src\, dst\optional{\, createpath, copytimes}} +\begin{funcdesc}{copy}{src, dst\optional{, createpath, copytimes}} Copy file \var{src} to \var{dst}. The files can be specified as pathnames or \code{FSSpec} objects. If \var{createpath} is non-zero \var{dst} must be a pathname and the folders leading to the @@ -22,13 +22,13 @@ If the source is an alias the original to which the alias points is copied, not the aliasfile. \end{funcdesc} -\begin{funcdesc}{copytree}{src\, dst} +\begin{funcdesc}{copytree}{src, dst} Recursively copy a file tree from \var{src} to \var{dst}, creating folders as needed. \var{Src} and \var{dst} should be specified as pathnames. \end{funcdesc} -\begin{funcdesc}{mkalias}{src\, dst} +\begin{funcdesc}{mkalias}{src, dst} Create a finder alias \var{dst} pointing to \var{src}. Both may be specified as pathnames or \var{FSSpec} objects. \end{funcdesc} |