]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove reference to open() mode "t" as it is platform dependent.
authorGeorg Brandl <georg@python.org>
Thu, 15 Dec 2005 21:34:53 +0000 (21:34 +0000)
committerGeorg Brandl <georg@python.org>
Thu, 15 Dec 2005 21:34:53 +0000 (21:34 +0000)
Doc/lib/libstdtypes.tex

index 06907830b7a97f9486fa928579c0a09923ed5921..fa3bd5f72d8ff2fb173a62f4ad706be6ea371d2b 100644 (file)
@@ -1588,7 +1588,7 @@ flush the read-ahead buffer.
   file is only opened for writing in append mode (mode \code{'a'}),
   this method is essentially a no-op, but it remains useful for files
   opened in append mode with reading enabled (mode \code{'a+'}).  If the
-  file is opened in text mode (mode \code{'t'}), only offsets returned
+  file is opened in text mode (without \code{'b'}), only offsets returned
   by \method{tell()} are legal.  Use of other offsets causes undefined
   behavior.