summaryrefslogtreecommitdiffstats
path: root/Lib/SocketServer.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-11-16 19:06:30 (GMT)
committerGuido van Rossum <guido@python.org>1998-11-16 19:06:30 (GMT)
commitfdb3d1a75e44bda10039376d0e94025633514b1f (patch)
treea4e2ca83aabb86cb93f25f486df058117223038b /Lib/SocketServer.py
parent017f7780a88656172af93a2e164b20468fd9c45c (diff)
downloadcpython-fdb3d1a75e44bda10039376d0e94025633514b1f.zip
cpython-fdb3d1a75e44bda10039376d0e94025633514b1f.tar.gz
cpython-fdb3d1a75e44bda10039376d0e94025633514b1f.tar.bz2
Fix typo in docstring: client_request should be client_address.
Noted by Stefan Witzel.
Diffstat (limited to 'Lib/SocketServer.py')
-rw-r--r--Lib/SocketServer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/SocketServer.py b/Lib/SocketServer.py
index 0d0caac..15558f2 100644
--- a/Lib/SocketServer.py
+++ b/Lib/SocketServer.py
@@ -351,7 +351,7 @@ class BaseRequestHandler:
defines a handle() method.
The handle() method can find the request as self.request, the
- client address as self.client_request, and the server (in case it
+ client address as self.client_address, and the server (in case it
needs access to per-server information) as self.server. Since a
separate instance is created for each request, the handle() method
can define arbitrary other instance variariables.