summaryrefslogtreecommitdiff
path: root/Lib/BaseHTTPServer.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-06-02 14:25:43 +0000
committerRaymond Hettinger <python@rcn.com>2003-06-02 14:25:43 +0000
commitb7c340f5326650f20bce713f7968e7d8683754e1 (patch)
treea4eccb81ca20ae534084535e22b0a0c794549853 /Lib/BaseHTTPServer.py
parent4008b1e3c3f33864d32306bc7d82d497ef74c24e (diff)
downloadcpython-b7c340f5326650f20bce713f7968e7d8683754e1.tar.gz
Fix SF bug #747348 docstring mistake in BaseHTTPServer.py. \n\nBackport Candidate
Diffstat (limited to 'Lib/BaseHTTPServer.py')
-rw-r--r--Lib/BaseHTTPServer.py2
1 files changed, 1 insertions, 1 deletions
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.