summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2005-07-18 07:38:49 (GMT)
committerGeorg Brandl <georg@python.org>2005-07-18 07:38:49 (GMT)
commit3227601d863196e0b405e315983f01faf3a08b6a (patch)
treebaa65b81821ec3d788e94b06a253b563d7b9ff19 /Lib
parent7f944144855e431e6f74a743c9fc6afd7279f149 (diff)
downloadcpython-3227601d863196e0b405e315983f01faf3a08b6a.zip
cpython-3227601d863196e0b405e315983f01faf3a08b6a.tar.gz
cpython-3227601d863196e0b405e315983f01faf3a08b6a.tar.bz2
backport bug [ 957505 ] SocketServer module documentation misleading
Diffstat (limited to 'Lib')
-rw-r--r--Lib/SocketServer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/SocketServer.py b/Lib/SocketServer.py
index 06ed134..c42d36e 100644
--- a/Lib/SocketServer.py
+++ b/Lib/SocketServer.py
@@ -65,8 +65,8 @@ various versions of the service by combining one of the server classes
with your request handler class.
The request handler class must be different for datagram or stream
-services. This can be hidden by using the mix-in request handler
-classes StreamRequestHandler or DatagramRequestHandler.
+services. This can be hidden by using the request handler
+subclasses StreamRequestHandler or DatagramRequestHandler.
Of course, you still have to use your head!