summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2021-10-15 19:30:22 -0400
committerJeff Forcier <jeff@bitprophet.org>2021-10-15 19:30:22 -0400
commita10fbaeecc7af5db8a72ddc19c4132b40a02f364 (patch)
tree035d5f8a180cd0cdff32248013e2cfe18030dd61
parent0b7fa07df98bcf3b5e659980b28b2631569436dc (diff)
parent28d0b383cffad330f971b3d45e06deb05db22a32 (diff)
downloadparamiko-2.7.tar.gz
Merge branch '2.6' into 2.72.7
-rw-r--r--paramiko/client.py10
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