Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 3baaa97

Browse filesBrowse files
Docs: improve accuracy of socketserver reference (GH-24767)
(cherry picked from commit 052bc12) Co-authored-by: Géry Ogam <gery.ogam@gmail.com>
1 parent 9057296 commit 3baaa97
Copy full SHA for 3baaa97

File tree

Expand file treeCollapse file tree

1 file changed

+3
-7
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+3
-7
lines changed

‎Doc/library/socketserver.rst

Copy file name to clipboardExpand all lines: Doc/library/socketserver.rst
+3-7Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,7 @@ synchronous servers of four types::
9494

9595
Note that :class:`UnixDatagramServer` derives from :class:`UDPServer`, not from
9696
:class:`UnixStreamServer` --- the only difference between an IP and a Unix
97-
stream server is the address family, which is simply repeated in both Unix
98-
server classes.
97+
server is the address family.
9998

10099

101100
.. class:: ForkingMixIn
@@ -430,11 +429,8 @@ Request Handler Objects
430429
The :attr:`self.rfile` and :attr:`self.wfile` attributes can be
431430
read or written, respectively, to get the request data or return data
432431
to the client.
433-
434-
The :attr:`rfile` attributes of both classes support the
435-
:class:`io.BufferedIOBase` readable interface, and
436-
:attr:`DatagramRequestHandler.wfile` supports the
437-
:class:`io.BufferedIOBase` writable interface.
432+
The :attr:`!rfile` attributes support the :class:`io.BufferedIOBase` readable interface,
433+
and :attr:`!wfile` attributes support the :class:`!io.BufferedIOBase` writable interface.
438434

439435
.. versionchanged:: 3.6
440436
:attr:`StreamRequestHandler.wfile` also supports the

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.