From: Guido van Rossum Date: Mon, 16 Nov 1998 19:07:04 +0000 (+0000) Subject: Fix typo in doc for handle(): client_request should be client_address. X-Git-Tag: v1.5.2b1~227 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=da30f4ca6b3bd854019d8a4a075f310907480c82;p=python Fix typo in doc for handle(): client_request should be client_address. Noted by Stefan Witzel. --- diff --git a/Doc/lib/libsocksvr.tex b/Doc/lib/libsocksvr.tex index 80ac724d6a..13b6d64890 100644 --- a/Doc/lib/libsocksvr.tex +++ b/Doc/lib/libsocksvr.tex @@ -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.