pylint spelling

pull/48/head
JacobBarthelmeh 2023-11-27 10:31:43 -07:00
parent 9573327f65
commit d15254da4e
2 changed files with 3 additions and 3 deletions

View File

@ -910,7 +910,7 @@ def wrap_socket(sock, keyfile=None, certfile=None, server_side=False,
The keyfile and certfile parameters specify optional files with proper
key and the certificates used to identify the local side of the connection.
The parameter server_side is a boolean which identifies whether server-side
The parameter server_side is a Boolean which identifies whether server-side
or client-side behavior is desired from this socket.
The parameter cert_reqs specifies whether a certificate is required from
@ -932,7 +932,7 @@ def wrap_socket(sock, keyfile=None, certfile=None, server_side=False,
The parameter ssl_version specifies which version of the SSL protocol to
use. Typically, the server chooses a particular protocol version, and the
client must adapt to the servers choice. Most of the versions are not
interoperable with the other versions. If not specified, the default is
inter-operable with the other versions. If not specified, the default is
PROTOCOL_TLS; it provides the most compatibility with other versions.
Heres a table showing which versions in a client (down the side) can

View File

@ -108,7 +108,7 @@ class WolfSSLMethod(object): # pylint: disable=too-few-public-methods
_lib.wolfDTLSv1_3_client_method()
if self.native_object == _ffi.NULL:
raise MemoryError("Unnable to allocate method object")
raise MemoryError("Unable to allocate method object")
def __del__(self):
if getattr(self, 'native_object', _ffi.NULL) != _ffi.NULL: