summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-11-27 13:23:26 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-11-27 13:23:26 (GMT)
commit648bcd706882a5ed83b7455ab3cf68734f92c6a4 (patch)
tree2da19c61e238ecd62565fbcd89ff344531f395f1 /Misc
parent1a305fd141ebe4295d554d8b127ab982858a079e (diff)
downloadcpython-648bcd706882a5ed83b7455ab3cf68734f92c6a4.zip
cpython-648bcd706882a5ed83b7455ab3cf68734f92c6a4.tar.gz
cpython-648bcd706882a5ed83b7455ab3cf68734f92c6a4.tar.bz2
Merged revisions 76546 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76546 | antoine.pitrou | 2009-11-27 14:18:34 +0100 (ven., 27 nov. 2009) | 7 lines Issue #6845: Add restart support for binary upload in ftplib. The `storbinary()` method of FTP and FTP_TLS objects gains an optional `rest` argument. Patch by Pablo Mouzo. (note: the patch also adds a test for the rest argument in retrbinary()) ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c7df776..724c97e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -140,6 +140,10 @@ C-API
Library
-------
+- Issue #6845: Add restart support for binary upload in ftplib. The
+ `storbinary()` method of FTP and FTP_TLS objects gains an optional `rest`
+ argument. Patch by Pablo Mouzo.
+
- Issue #5788: `datetime.timedelta` objects get a new `total_seconds()`
method returning the total number of seconds in the duration. Patch by
Brian Quinlan.