Message394665
The documentation of socket.SocketType (https://docs.python.org/3/library/socket.html?highlight=sockettype#socket.SocketType) is misleading. It states:
This is a Python type object that represents the socket object type. It is the same as type(socket(...)).
This is untrue. socket.SocketType is in reality re-exported from _socket, where it is an alias for class _socket.socket, a super type of class socket.socket. I think that either the documentation should be fixed, or SocketType should be moved to socket and made an alias of socket.socket. |
|
| Date |
User |
Action |
Args |
| 2021-05-28 15:21:42 | srittau | set | recipients:
+ srittau, docs@python |
| 2021-05-28 15:21:42 | srittau | set | messageid: <[email protected]> |
| 2021-05-28 15:21:42 | srittau | link | issue44261 messages |
| 2021-05-28 15:21:42 | srittau | create | |
|