[Python-checkins] python/dist/src/Doc/mac libmacfs.tex,1.27,1.28

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Tue, 06 Aug 2002 15:15:25 -0700


Update of /cvsroot/python/python/dist/src/Doc/mac
In directory usw-pr-cvs1:/tmp/cvs-serv17154

Modified Files:
	libmacfs.tex 
Log Message:
Added a note about the inability to specify a pathname to a non-existing
file in unix-Python.


Index: libmacfs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/mac/libmacfs.tex,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** libmacfs.tex	17 Jan 2002 04:44:34 -0000	1.27
--- libmacfs.tex	6 Aug 2002 22:15:23 -0000	1.28
***************
*** 18,22 ****
  pathname, (2) an \pytype{FSSpec} object or (3) a 3-tuple
  \code{(\var{wdRefNum}, \var{parID}, \var{name})} as described in
! \citetitle{Inside Macintosh:\ Files}. A description of aliases and the
  Standard File package can also be found there.
  
--- 18,28 ----
  pathname, (2) an \pytype{FSSpec} object or (3) a 3-tuple
  \code{(\var{wdRefNum}, \var{parID}, \var{name})} as described in
! \citetitle{Inside Macintosh:\ Files}. An \pytype{FSSpec} can point to
! a non-existing file, as long as the folder containing the file exists.
! Under MacPython the same is true for a pathname, but not under unix-Pyton
! because of the way pathnames and FSRefs works. See Apple's documentation
! for details.
! 
! A description of aliases and the
  Standard File package can also be found there.