From a88b8c8c0f591a3bfa8d7984343a27815184f495 Mon Sep 17 00:00:00 2001 From: "Jeremy T. Bouse" Date: Sun, 29 May 2011 08:16:54 -0400 Subject: Imported Upstream version 1.7.7.1 --- docs/paramiko.SFTPClient-class.html | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'docs/paramiko.SFTPClient-class.html') diff --git a/docs/paramiko.SFTPClient-class.html b/docs/paramiko.SFTPClient-class.html index 9e49cc3..d6b7abd 100644 --- a/docs/paramiko.SFTPClient-class.html +++ b/docs/paramiko.SFTPClient-class.html @@ -378,7 +378,8 @@ object --+ put(self, localpath, remotepath, - callback=None)
+ callback=None, + confirm=True)
Copy a local file (localpath) to the SFTP server as remotepath. @@ -1186,7 +1187,8 @@ object --+

put(self, localpath, remotepath, - callback=None) + callback=None, + confirm=True)

source code  @@ -1204,6 +1206,8 @@ object --+
  • remotepath (str) - the destination path on the SFTP server
  • callback (function(int, int)) - optional callback function that accepts the bytes transferred so far and the total bytes to be transferred (since 1.7.4)
  • +
  • confirm (bool) - whether to do a stat() on the file afterwards to confirm the file + size (since 1.7.7)
  • Returns: SFTPAttributes
    an object containing attributes about the given file (since @@ -1510,7 +1514,7 @@ object --+