summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-11-25 17:03:09 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-11-25 17:03:09 (GMT)
commit0e86a5842d0fadff37c299e8a1c03535c6727b19 (patch)
tree4162298cd02cd5c841e5dcbbafed8131575bd2e8 /Misc
parente333d00d3ae71467454d94fbd9ece93c1e821022 (diff)
downloadcpython-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/NEWS4
1 files changed, 3 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f78a31e..93169e4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.