diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-11-27 13:23:26 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-11-27 13:23:26 (GMT) |
commit | 648bcd706882a5ed83b7455ab3cf68734f92c6a4 (patch) | |
tree | 2da19c61e238ecd62565fbcd89ff344531f395f1 /Misc | |
parent | 1a305fd141ebe4295d554d8b127ab982858a079e (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |