Home
last modified time | relevance | path

Searched refs:SpooledTemporaryFile (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_tempfile.py968 file = tempfile.SpooledTemporaryFile(max_size=max_size, dir=dir, prefix=pre, suffix=suf)
984 f = tempfile.SpooledTemporaryFile(max_size=10, dir=dir)
1054 f = tempfile.SpooledTemporaryFile()
1063 f = tempfile.SpooledTemporaryFile(max_size=1)
1085 f = tempfile.SpooledTemporaryFile(max_size=10)
1111 f = tempfile.SpooledTemporaryFile(mode='w+', max_size=10,
1141 f = tempfile.SpooledTemporaryFile(mode='w+', max_size=10,
1168 with tempfile.SpooledTemporaryFile(max_size=1) as f:
1179 with tempfile.SpooledTemporaryFile(max_size=1) as f:
1193 f = tempfile.SpooledTemporaryFile(max_size=1)
[all …]
Dtest_genericalias.py36 from tempfile import TemporaryDirectory, SpooledTemporaryFile
76 TemporaryDirectory, SpooledTemporaryFile,
/external/python/cpython2/Lib/test/
Dtest_tempfile.py855 file = tempfile.SpooledTemporaryFile(max_size=max_size, dir=dir, prefix=pre, suffix=suf)
873 f = tempfile.SpooledTemporaryFile(max_size=10, dir=dir)
952 f = tempfile.SpooledTemporaryFile()
964 f = tempfile.SpooledTemporaryFile(max_size=1)
989 f = tempfile.SpooledTemporaryFile(max_size=10)
1010 with tempfile.SpooledTemporaryFile(max_size=1) as f:
1021 with tempfile.SpooledTemporaryFile(max_size=1) as f:
1035 f = tempfile.SpooledTemporaryFile(max_size=1)
Dtest_gzip.py372 with tempfile.SpooledTemporaryFile() as f:
/external/python/cpython2/Lib/
Dtempfile.py519 class SpooledTemporaryFile: class
/external/python/cpython3/Doc/library/
Dtempfile.rst19 :class:`TemporaryDirectory`, and :class:`SpooledTemporaryFile` are high-level
96 .. function:: SpooledTemporaryFile(max_size=0, mode='w+b', buffering=-1, encoding=None, newline=Non…
/external/python/cpython3/Lib/
Dtempfile.py623 class SpooledTemporaryFile: class
/external/python/cpython2/Doc/library/
Dtempfile.rst84 .. function:: SpooledTemporaryFile([max_size=0, [mode='w+b'[, bufsize=-1[, suffix=''[, prefix='tmp'…
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a3.rst655 :class:`tempfile.SpooledTemporaryFile`.
D3.9.0a2.rst425 Fix ``SpooledTemporaryFile.rollover()`` might corrupt the file when it is in
D3.9.0a6.rst450 Fixed ``SpooledTemporaryFile.seek()`` to return the position.
D3.9.0a5.rst726 Remove :meth:`tempfile.SpooledTemporaryFile.softspace` as files no longer
/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst1477 Allow tempfile.NamedTemporaryFile and SpooledTemporaryFile to be used in
2614 add a SpooledTemporaryFile class to tempfile.py.
D2.7.4rc1.rst927 In SpooledTemporaryFile class mode and name properties and xreadlines method
/external/python/cpython3/Doc/whatsnew/
D3.3.rst2020 :class:`tempfile.SpooledTemporaryFile`\'s
2021 :meth:`~tempfile.SpooledTemporaryFile.truncate` method now accepts
D2.6.rst2476 A new class, :class:`SpooledTemporaryFile`, behaves like
2481 The :class:`NamedTemporaryFile` and :class:`SpooledTemporaryFile` classes
/external/python/cpython2/Doc/whatsnew/
D2.6.rst2472 A new class, :class:`SpooledTemporaryFile`, behaves like
2477 The :class:`NamedTemporaryFile` and :class:`SpooledTemporaryFile` classes
/external/python/cpython3/Misc/
DHISTORY5352 SpooledTemporaryFile objects even when they have not yet rolled over.
8999 - Issue #9957: SpooledTemporaryFile.truncate() now accepts an optional size