]> granicus.if.org Git - python/commitdiff
Added warning about behavior of open mode 'a' (or 'a+').
authorGuido van Rossum <guido@python.org>
Thu, 2 May 1996 15:16:59 +0000 (15:16 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 2 May 1996 15:16:59 +0000 (15:16 +0000)
Doc/lib/libfuncs.tex
Doc/libfuncs.tex

index 34d29281ddccec75b0fc7edc8b253c3d9e38a7ca..088f969e7997d3979ff50dcaad97884b5017061f 100644 (file)
@@ -265,7 +265,10 @@ any kind of sequence; the result is always a list.
   \code{fopen()}: \var{filename} is the file name to be opened,
   \var{mode} indicates how the file is to be opened: \code{'r'} for
   reading, \code{'w'} for writing (truncating an existing file), and
-  \code{'a'} opens it for appending.  Modes \code{'r+'}, \code{'w+'} and
+  \code{'a'} opens it for appending (which on {\em some} {\UNIX}
+  systems means that {\em all} writes append to the end of the file,
+  regardless of the current seek position).
+  Modes \code{'r+'}, \code{'w+'} and
   \code{'a+'} open the file for updating, provided the underlying
   \code{stdio} library understands this.  On systems that differentiate
   between binary and text files, \code{'b'} appended to the mode opens
index 34d29281ddccec75b0fc7edc8b253c3d9e38a7ca..088f969e7997d3979ff50dcaad97884b5017061f 100644 (file)
@@ -265,7 +265,10 @@ any kind of sequence; the result is always a list.
   \code{fopen()}: \var{filename} is the file name to be opened,
   \var{mode} indicates how the file is to be opened: \code{'r'} for
   reading, \code{'w'} for writing (truncating an existing file), and
-  \code{'a'} opens it for appending.  Modes \code{'r+'}, \code{'w+'} and
+  \code{'a'} opens it for appending (which on {\em some} {\UNIX}
+  systems means that {\em all} writes append to the end of the file,
+  regardless of the current seek position).
+  Modes \code{'r+'}, \code{'w+'} and
   \code{'a+'} open the file for updating, provided the underlying
   \code{stdio} library understands this.  On systems that differentiate
   between binary and text files, \code{'b'} appended to the mode opens