diff options
author | Guido van Rossum <guido@python.org> | 1998-11-16 19:07:04 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-11-16 19:07:04 (GMT) |
commit | da30f4ca6b3bd854019d8a4a075f310907480c82 (patch) | |
tree | ae379f83fc85f25bf8bf6d00a85a2ca005770593 /Doc/lib/libsocksvr.tex | |
parent | fdb3d1a75e44bda10039376d0e94025633514b1f (diff) | |
download | cpython-da30f4ca6b3bd854019d8a4a075f310907480c82.zip cpython-da30f4ca6b3bd854019d8a4a075f310907480c82.tar.gz cpython-da30f4ca6b3bd854019d8a4a075f310907480c82.tar.bz2 |
Fix typo in doc for handle(): client_request should be client_address.
Noted by Stefan Witzel.
Diffstat (limited to 'Doc/lib/libsocksvr.tex')
-rw-r--r-- | Doc/lib/libsocksvr.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libsocksvr.tex b/Doc/lib/libsocksvr.tex index 80ac724..13b6d64 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. |