diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-25 17:03:09 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-25 17:03:09 (GMT) |
commit | 0e86a5842d0fadff37c299e8a1c03535c6727b19 (patch) | |
tree | 4162298cd02cd5c841e5dcbbafed8131575bd2e8 /Misc | |
parent | e333d00d3ae71467454d94fbd9ece93c1e821022 (diff) | |
download | cpython-0e86a5842d0fadff37c299e8a1c03535c6727b19.zip cpython-0e86a5842d0fadff37c299e8a1c03535c6727b19.tar.gz cpython-0e86a5842d0fadff37c299e8a1c03535c6727b19.tar.bz2 |
Issue #9957: SpooledTemporaryFile.truncate() now accepts an optional size parameter, as other file-like objects.
Patch by Ryan Kelly.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -386,10 +386,12 @@ Core and Builtins - Issue #12380: The rjust, ljust and center methods of bytes and bytearray now accept a bytearray argument. - Library ------- +- Issue #9957: SpooledTemporaryFile.truncate() now accepts an optional size + parameter, as other file-like objects. Patch by Ryan Kelly. + - Issue #13458: Fix a memory leak in the ssl module when decoding a certificate with a subjectAltName. Patch by Robert Xiao. |