mirror of
https://github.com/python/cpython.git
synced 2025-10-15 03:10:29 +00:00
Fix typo in docstring: client_request should be client_address.
Noted by Stefan Witzel.
This commit is contained in:
parent
017f7780a8
commit
fdb3d1a75e
1 changed files with 1 additions and 1 deletions
|
@ -351,7 +351,7 @@ class BaseRequestHandler:
|
||||||
defines a handle() method.
|
defines a handle() method.
|
||||||
|
|
||||||
The handle() method can find the request as self.request, the
|
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
|
needs access to per-server information) as self.server. Since a
|
||||||
separate instance is created for each request, the handle() method
|
separate instance is created for each request, the handle() method
|
||||||
can define arbitrary other instance variariables.
|
can define arbitrary other instance variariables.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue