From fefd3ac04c6794c0ed81b410486d28d12dc8e6cf Mon Sep 17 00:00:00 2001 From: R David Murray Date: Sat, 6 Oct 2012 18:26:40 -0400 Subject: [PATCH] #9957: document that SpooledTemporaryFile.truncate does not take size arg --- Doc/library/tempfile.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Doc/library/tempfile.rst b/Doc/library/tempfile.rst index 936f06a0ca..ada647daa3 100644 --- a/Doc/library/tempfile.rst +++ b/Doc/library/tempfile.rst @@ -86,7 +86,8 @@ The module defines the following user-callable functions: data is spooled in memory until the file size exceeds *max_size*, or until the file's :func:`fileno` method is called, at which point the contents are written to disk and operation proceeds as with - :func:`TemporaryFile`. + :func:`TemporaryFile`. Also, it's ``truncate`` method does not + accept a ``size`` argument. The resulting file has one additional method, :func:`rollover`, which causes the file to roll over to an on-disk file regardless of its size. -- 2.50.1