Commit 4f169a7a authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #17147. Mention BytesIO in SpooledTemporaryFile documentation.

parent 01ad622a
...@@ -83,9 +83,11 @@ The module defines the following user-callable items: ...@@ -83,9 +83,11 @@ The module defines the following user-callable items:
causes the file to roll over to an on-disk file regardless of its size. causes the file to roll over to an on-disk file regardless of its size.
The returned object is a file-like object whose :attr:`_file` attribute The returned object is a file-like object whose :attr:`_file` attribute
is either a :class:`StringIO` object or a true file object, depending on is either a :class:`BytesIO` or :class:`StringIO` object (depending on
whether :func:`rollover` has been called. This file-like object can be whether specifies binary or text *mode* was specified) or a true file
used in a :keyword:`with` statement, just like a normal 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.
.. function:: TemporaryDirectory(suffix='', prefix='tmp', dir=None) .. function:: TemporaryDirectory(suffix='', prefix='tmp', dir=None)
......
...@@ -479,8 +479,8 @@ else: ...@@ -479,8 +479,8 @@ else:
raise raise
class SpooledTemporaryFile: class SpooledTemporaryFile:
"""Temporary file wrapper, specialized to switch from """Temporary file wrapper, specialized to switch from BytesIO
StringIO to a real file when it exceeds a certain size or or StringIO to a real file when it exceeds a certain size or
when a fileno is needed. when a fileno is needed.
""" """
_rolled = False _rolled = False
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment