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
8 changes: 8 additions & 0 deletions Doc/library/socketserver.rst
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,14 @@ Request Handler Objects
:attr:`DatagramRequestHandler.wfile` supports the
:class:`io.BufferedIOBase` writable interface.

The :class:`StreamRequestHandler` class also provides the
:attr:`self.connection` attribute which is set to :attr:`self.request`, thus
acting as an alias for that attribute.

The :class:`DatagramRequestHandler` class also provides the
:attr:`self.packet` and :attr:`self.socket` attributes into which it unpacks
the :attr:`self.request` attribute.

.. versionchanged:: 3.6
:attr:`StreamRequestHandler.wfile` also supports the
:class:`io.BufferedIOBase` writable interface.
Expand Down