diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-09-08 15:03:20 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-09-08 15:03:20 -0700 |
commit | 5c45cd9af604525d9aba87f1ce173e6b0a51130c (patch) | |
tree | 931c2d6106ebe0cb8512cd2536935976fbf552b5 | |
parent | 68f7dbea29bb700caf5885ffe8af6bc7bd5ad92b (diff) |
Add versionchanged
-rw-r--r-- | paramiko/client.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/paramiko/client.py b/paramiko/client.py index 4f75cefe..31d99e96 100644 --- a/paramiko/client.py +++ b/paramiko/client.py @@ -221,6 +221,9 @@ class SSHClient (object): :raises SSHException: if there was any other error connecting or establishing an SSH session :raises socket.error: if a socket error occurred while connecting + + .. versionchanged:: 1.15 + Added the ``banner_timeout`` argument. """ if not sock: for (family, socktype, proto, canonname, sockaddr) in socket.getaddrinfo(hostname, port, socket.AF_UNSPEC, socket.SOCK_STREAM): |