diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-09 09:51:48 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-09 09:51:48 (GMT) |
commit | 19a5214da47623fa3b8a8e321efe04584e2563c7 (patch) | |
tree | f0bb815d4b50fdfc1a9b9a62f672cdf3dd4ad57f /Doc | |
parent | 23a6726bc849be613c02b76815f26cc75cf4789c (diff) | |
parent | 4b109cb4a8dd2ad9d55913b682c6234f7bcd874e (diff) | |
download | cpython-19a5214da47623fa3b8a8e321efe04584e2563c7.zip cpython-19a5214da47623fa3b8a8e321efe04584e2563c7.tar.gz cpython-19a5214da47623fa3b8a8e321efe04584e2563c7.tar.bz2 |
Minor fix of previous commit.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/tempfile.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/tempfile.rst b/Doc/library/tempfile.rst index b97603f..f25730a 100644 --- a/Doc/library/tempfile.rst +++ b/Doc/library/tempfile.rst @@ -83,7 +83,7 @@ The module defines the following user-callable items: The returned object is a file-like object whose :attr:`_file` attribute is either a :class:`BytesIO` or :class:`StringIO` object (depending on - whether specifies binary or text *mode* was specified) or a true file + whether binary or text *mode* was specified) or a true file object, depending on whether :func:`rollover` has been called. This file-like object can be used in a :keyword:`with` statement, just like a normal file. |