Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions Doc/library/socket.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1024,8 +1024,11 @@ The following functions all create :ref:`socket objects <socket-objects>`.

.. data:: SocketType

This is a Python type object that represents the socket object type. It is the
same as ``type(socket(...))``.
This is a Python type object that is the base class for all socket objects.

.. versionchanged:: 3.0
This became the base class for socket objects. Previously, this was
the exact type of socket objects, the same as ``type(socket(...))``.


Other functions
Expand Down
Loading