summaryrefslogtreecommitdiff
path: root/paramiko/ssh_exception.py
diff options
context:
space:
mode:
Diffstat (limited to 'paramiko/ssh_exception.py')
-rw-r--r--paramiko/ssh_exception.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/paramiko/ssh_exception.py b/paramiko/ssh_exception.py
index 3da49958..9b1b44c3 100644
--- a/paramiko/ssh_exception.py
+++ b/paramiko/ssh_exception.py
@@ -58,9 +58,9 @@ class BadAuthenticationType(AuthenticationException):
allowed_types = []
- # TODO 3.0: remove explanation kwarg
+ # TODO 4.0: remove explanation kwarg
def __init__(self, explanation, types):
- # TODO 3.0: remove this supercall unless it's actually required for
+ # TODO 4.0: remove this supercall unless it's actually required for
# pickling (after fixing pickling)
AuthenticationException.__init__(self, explanation, types)
self.explanation = explanation
@@ -140,7 +140,7 @@ class IncompatiblePeer(SSHException):
.. versionadded:: 2.9
"""
- # TODO 3.0: consider making this annotate w/ 1..N 'missing' algorithms,
+ # TODO 4.0: consider making this annotate w/ 1..N 'missing' algorithms,
# either just the first one that would halt kex, or even updating the
# Transport logic so we record /all/ that /could/ halt kex.
# TODO: update docstrings where this may end up raised so they are more