summaryrefslogtreecommitdiff
path: root/paramiko/auth_handler.py
diff options
context:
space:
mode:
Diffstat (limited to 'paramiko/auth_handler.py')
-rw-r--r--paramiko/auth_handler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/paramiko/auth_handler.py b/paramiko/auth_handler.py
index 02ab810c..22f506c1 100644
--- a/paramiko/auth_handler.py
+++ b/paramiko/auth_handler.py
@@ -367,7 +367,7 @@ class AuthHandler:
def _parse_service_accept(self, m):
service = m.get_text()
if service == "ssh-userauth":
- # TODO 3.0: this message sucks ass. change it to something more
+ # TODO 4.0: this message sucks ass. change it to something more
# obvious. it always appears to mean "we already authed" but no! it
# just means "we are allowed to TRY authing!"
self._log(DEBUG, "userauth is OK")
@@ -806,7 +806,7 @@ Error Message: {}
return
# TODO: do the same to the other tables, in Transport.
- # TODO 3.0: MAY make sense to make these tables into actual
+ # TODO 4.0: MAY make sense to make these tables into actual
# classes/instances that can be fed a mode bool or whatever. Or,
# alternately (both?) make the message types small classes or enums that
# embed this info within themselves (which could also then tidy up the