From: Georg Brandl Date: Thu, 15 Dec 2005 21:34:53 +0000 (+0000) Subject: Remove reference to open() mode "t" as it is platform dependent. X-Git-Tag: v2.4.3c1~190 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2f6c775e0fe552af4f7928276f8c24e5db6d1028;p=thirdparty%2FPython%2Fcpython.git Remove reference to open() mode "t" as it is platform dependent. --- diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex index 06907830b7a9..fa3bd5f72d8f 100644 --- a/Doc/lib/libstdtypes.tex +++ b/Doc/lib/libstdtypes.tex @@ -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.