diff options
author | Raymond Hettinger <python@rcn.com> | 2003-06-02 14:25:43 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-06-02 14:25:43 (GMT) |
commit | bf68c78a6fc00de1682428eef4488d757dd2f17b (patch) | |
tree | 4a6304c4c70955b05fdeee335d07253a2161b7bf /Lib/BaseHTTPServer.py | |
parent | 0741f801bae87e943e3fe31274daec293a279ae7 (diff) | |
download | cpython-bf68c78a6fc00de1682428eef4488d757dd2f17b.zip cpython-bf68c78a6fc00de1682428eef4488d757dd2f17b.tar.gz cpython-bf68c78a6fc00de1682428eef4488d757dd2f17b.tar.bz2 |
Fix SF bug #747348 docstring mistake in BaseHTTPServer.py. \n\nBackport Candidate
Diffstat (limited to 'Lib/BaseHTTPServer.py')
-rw-r--r-- | Lib/BaseHTTPServer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/BaseHTTPServer.py b/Lib/BaseHTTPServer.py index 7cc7b9e..edb15ab 100644 --- a/Lib/BaseHTTPServer.py +++ b/Lib/BaseHTTPServer.py @@ -218,7 +218,7 @@ class BaseHTTPRequestHandler(SocketServer.StreamRequestHandler): def parse_request(self): """Parse a request (internal). - The request should be stored in self.raw_request; the results + The request should be stored in self.raw_requestline; the results are in self.command, self.path, self.request_version and self.headers. |