Python: fix typo and name.

This commit is contained in:
Rasmus Lerchedahl Petersen
2021-03-26 00:29:40 +01:00
parent c93e0c08fd
commit 554404575d

View File

@@ -12,7 +12,7 @@ This should be kept up to date; the world is moving fast and protocols are being
- `ssl.wrap_socket` is creating insecure connections, use `SSLContext.wrap_socket` instead. [link](https://docs.python.org/3/library/ssl.html#ssl.wrap_socket)
> Deprecated since version 3.7: Since Python 3.2 and 2.7.9, it is recommended to use the `SSLContext.wrap_socket()` instead of `wrap_socket()`. The top-level function is limited and creates an insecure client socket without server name indication or hostname matching.
- Default consteructors are fine, a sluent api is used to constrain possible protocols later.
- Default consteructors are fine, a fluent api is used to constrain possible protocols later.
## Current recomendation