diff options
-rw-r--r-- | .codespellrc | 2 | ||||
-rw-r--r-- | dev-requirements.txt | 2 | ||||
-rw-r--r-- | paramiko/auth_strategy.py | 2 | ||||
-rw-r--r-- | paramiko/server.py | 4 | ||||
-rw-r--r-- | paramiko/transport.py | 2 | ||||
-rw-r--r-- | sites/www/changelog.rst | 4 |
6 files changed, 8 insertions, 8 deletions
diff --git a/.codespellrc b/.codespellrc index f6935aa7..f8c749da 100644 --- a/.codespellrc +++ b/.codespellrc @@ -4,4 +4,4 @@ skip = venvs,.venv,.git,build,*.egg-info,*.lock,*.js,*.css,docs # Certain words AUTHOR feels strongly about, plus various proper names that are # close enough to real words that they anger codespell. (NOTE: for some reason # codespell wants the latter listed in all-lowercase...!) -ignore-words-list = keypair,flage +ignore-words-list = keypair,flage,lew,welp diff --git a/dev-requirements.txt b/dev-requirements.txt index 86092313..ad1037b4 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -10,7 +10,7 @@ flake8>=4,<5 # Formatting! black>=22.8,<22.9 # Spelling! -codespell>=2.2,<2.3 +codespell>=2.2.1,<2.3 # Coverage! coverage>=6.2,<7 # Documentation tools diff --git a/paramiko/auth_strategy.py b/paramiko/auth_strategy.py index 524ae349..3da6d423 100644 --- a/paramiko/auth_strategy.py +++ b/paramiko/auth_strategy.py @@ -83,7 +83,7 @@ class Password(AuthSource): # TODO 4.0: twiddle this, or PKey, or both, so they're more obviously distinct. # TODO 4.0: the obvious is to make this more wordy (PrivateKeyAuth), the -# minimalist approch might be to rename PKey to just Key (esp given all the +# minimalist approach might be to rename PKey to just Key (esp given all the # subclasses are WhateverKey and not WhateverPKey) class PrivateKey(AuthSource): """ diff --git a/paramiko/server.py b/paramiko/server.py index 6b0bb0f6..6923bdf5 100644 --- a/paramiko/server.py +++ b/paramiko/server.py @@ -254,7 +254,7 @@ class ServerInterface: a valid krb5 principal! We don't check if the krb5 principal is allowed to log in on the server, because there is no way to do that in python. So - if you develop your own SSH server with paramiko for a cetain + if you develop your own SSH server with paramiko for a certain platform like Linux, you should call C{krb5_kuserok()} in your local kerberos library to make sure that the krb5_principal has an account on the server and is allowed to @@ -286,7 +286,7 @@ class ServerInterface: a valid krb5 principal! We don't check if the krb5 principal is allowed to log in on the server, because there is no way to do that in python. So - if you develop your own SSH server with paramiko for a cetain + if you develop your own SSH server with paramiko for a certain platform like Linux, you should call C{krb5_kuserok()} in your local kerberos library to make sure that the krb5_principal has an account on the server and is allowed diff --git a/paramiko/transport.py b/paramiko/transport.py index 875d50c2..8785d6bb 100644 --- a/paramiko/transport.py +++ b/paramiko/transport.py @@ -1664,7 +1664,7 @@ class Transport(threading.Thread, ClosingContextManager): dumb wrapper around PAM. This method will block until the authentication succeeds or fails, - peroidically calling the handler asynchronously to get answers to + periodically calling the handler asynchronously to get answers to authentication questions. The handler may be called more than once if the server continues to ask questions. diff --git a/sites/www/changelog.rst b/sites/www/changelog.rst index ff59a865..4b39715a 100644 --- a/sites/www/changelog.rst +++ b/sites/www/changelog.rst @@ -4,7 +4,7 @@ Changelog - :bug:`2012 major` (also :issue:`1961` and countless others) The ``server-sig-algs`` and ``RSA-SHA2`` features added around Paramiko 2.9 or - so, had the annoying side effect of not working with servers that dont' + so, had the annoying side effect of not working with servers that don't support *either* of those feature sets, requiring use of ``disabled_algorithms`` to forcibly disable the SHA2 algorithms on Paramiko's end. @@ -51,7 +51,7 @@ Changelog Some minor backwards-_compatible_ changes were made to the **existing** Transport and AuthHandler classes to facilitate the new code. For example, ``Transport._handler_table`` and - ``AuthHandler._client_handler_table`` are now propertes instead of raw + ``AuthHandler._client_handler_table`` are now properties instead of raw attributes. - :feature:`387` Users of `~paramiko.client.SSHClient` can now configure the |