diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-10-06 22:32:39 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-10-06 22:32:39 (GMT) |
commit | ca76ea16ad616fb3c486fbe55d93548f34a7e505 (patch) | |
tree | 3f373e680a6563befa92b6a11eadf0303216345f /Doc/whatsnew | |
parent | 92a29b5d35fbe9d3327b37630194c48579da1899 (diff) | |
parent | 138a314d1a4e46543ee5394bd87f8eeb06c6bb6e (diff) | |
download | cpython-ca76ea16ad616fb3c486fbe55d93548f34a7e505.zip cpython-ca76ea16ad616fb3c486fbe55d93548f34a7e505.tar.gz cpython-ca76ea16ad616fb3c486fbe55d93548f34a7e505.tar.bz2 |
#9957: document that SpooledTemporaryFile.truncate now accepts a size arg
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index b32b2a6..cb7dd83 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -1964,6 +1964,14 @@ sequence` holding informations about the thread implementation (:issue:`11223`). +tempfile +-------- + +:class:`tempfile.SpooledTemporaryFile`\'s +:meth:`~tempfile.SpooledTemporaryFile.trucate` method now accepts +a ``size`` parameter. (Contributed by Ryan Kelly in :issue:`9957`.) + + textwrap -------- |