From: Raymond Hettinger Date: Mon, 2 Jun 2003 14:25:43 +0000 (+0000) Subject: Fix SF bug #747348 docstring mistake in BaseHTTPServer.py. \n\nBackport Candidate X-Git-Tag: v2.3c1~541 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bf68c78a6fc00de1682428eef4488d757dd2f17b;p=python Fix SF bug #747348 docstring mistake in BaseHTTPServer.py. \n\nBackport Candidate --- diff --git a/Lib/BaseHTTPServer.py b/Lib/BaseHTTPServer.py index 7cc7b9e5d2..edb15ab430 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.