diff options
author | Georg Brandl <georg@python.org> | 2005-12-15 21:34:53 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-12-15 21:34:53 (GMT) |
commit | 2f6c775e0fe552af4f7928276f8c24e5db6d1028 (patch) | |
tree | 6b227f6defc5c6571dc61ff9ad93b9eb7b073e5a /Doc | |
parent | e708f900afb225fb3c3b34aad14c4c93ff29d483 (diff) | |
download | cpython-2f6c775e0fe552af4f7928276f8c24e5db6d1028.zip cpython-2f6c775e0fe552af4f7928276f8c24e5db6d1028.tar.gz cpython-2f6c775e0fe552af4f7928276f8c24e5db6d1028.tar.bz2 |
Remove reference to open() mode "t" as it is platform dependent.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libstdtypes.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex index 0690783..fa3bd5f 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. |