diff options
-rw-r--r-- | paramiko/sftp_client.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/paramiko/sftp_client.py b/paramiko/sftp_client.py index 16728d15..b3d2d563 100644 --- a/paramiko/sftp_client.py +++ b/paramiko/sftp_client.py @@ -536,6 +536,7 @@ class SFTPClient (BaseSFTP): @type remotepath: str @param callback: optional callback function that accepts the bytes transferred so far and the total bytes to be transferred + (since 1.7.4) @type callback: function(int, int) @return: an object containing attributes about the given file (since 1.7.4) @@ -575,6 +576,7 @@ class SFTPClient (BaseSFTP): @type localpath: str @param callback: optional callback function that accepts the bytes transferred so far and the total bytes to be transferred + (since 1.7.4) @type callback: function(int, int) @since: 1.4 |