]> granicus.if.org Git - python/commitdiff
Fix typo in doc for handle(): client_request should be client_address.
authorGuido van Rossum <guido@python.org>
Mon, 16 Nov 1998 19:07:04 +0000 (19:07 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 16 Nov 1998 19:07:04 +0000 (19:07 +0000)
Noted by Stefan Witzel.

Doc/lib/libsocksvr.tex

index 80ac724d6a7109eea491c3359d3eac9060382afa..13b6d648908efada4f7e06f1c2e14b6975080e60 100644 (file)
@@ -176,7 +176,7 @@ function will not be called.
 This function must do all the work required to service a request.
 Several instance attributes are available to it; the request is
 available as \member{self.request}; the client address as
-\member{self.client_request}; and the server instance as
+\member{self.client_address}; and the server instance as
 \member{self.server}, in case it needs access to per-server
 information.