diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2021-10-15 19:30:22 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2021-10-15 19:30:22 -0400 |
commit | 28d0b383cffad330f971b3d45e06deb05db22a32 (patch) | |
tree | 787910a40919e7333f99b181de72c6c4501adc8b | |
parent | d259b1f6bd9004abab700358b79dc72c89f5a307 (diff) | |
parent | a73bf04c4c1105ec731cbd92b7dec350b3d1bdb6 (diff) |
Merge branch '2.5' into 2.6
-rw-r--r-- | paramiko/client.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/paramiko/client.py b/paramiko/client.py index 3d8f2dd4..80c956cd 100644 --- a/paramiko/client.py +++ b/paramiko/client.py @@ -450,11 +450,13 @@ class SSHClient(ClosingContextManager): """ Close this SSHClient and its underlying `.Transport`. + This should be called anytime you are done using the client object. + .. warning:: - Failure to do this may, in some situations, cause your Python - interpreter to hang at shutdown (often due to race conditions). - It's good practice to `close` your client objects anytime you're - done using them, instead of relying on garbage collection. + Paramiko registers garbage collection hooks that will try to + automatically close connections for you, but this is not presently + reliable. Failure to explicitly close your client after use may + lead to end-of-process hangs! """ if self._transport is None: return |