From: Guido van Rossum Date: Mon, 16 Nov 1998 19:06:30 +0000 (+0000) Subject: Fix typo in docstring: client_request should be client_address. X-Git-Tag: v1.5.2b1~228 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fdb3d1a75e44bda10039376d0e94025633514b1f;p=thirdparty%2FPython%2Fcpython.git Fix typo in docstring: client_request should be client_address. Noted by Stefan Witzel. --- diff --git a/Lib/SocketServer.py b/Lib/SocketServer.py index 0d0caac77231..15558f2b583e 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.