diff options
author | Georg Brandl <georg@python.org> | 2005-12-15 21:34:29 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-12-15 21:34:29 (GMT) |
commit | 6ee339109f40645dbe04e1f70069c96df9aaa741 (patch) | |
tree | dfa70e275bc248ab6551a18aae41648c2ed05af6 | |
parent | 3b287702dde0758a04d2ec2b93b641bf55a81c26 (diff) | |
download | cpython-6ee339109f40645dbe04e1f70069c96df9aaa741.zip cpython-6ee339109f40645dbe04e1f70069c96df9aaa741.tar.gz cpython-6ee339109f40645dbe04e1f70069c96df9aaa741.tar.bz2 |
Remove reference to the "t" open() mode as it is platform dependent.
-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 bf4a3b8..c0069e1 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. |