]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in docstring: client_request should be client_address.
authorGuido van Rossum <guido@python.org>
Mon, 16 Nov 1998 19:06:30 +0000 (19:06 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 16 Nov 1998 19:06:30 +0000 (19:06 +0000)
Noted by Stefan Witzel.

Lib/SocketServer.py

index 0d0caac77231484d85a14313b05327deb7a113b8..15558f2b583e672a026f6783d3edb891d8588536 100644 (file)
@@ -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.