[Python-checkins] python/dist/src/Lib BaseHTTPServer.py,1.26,1.27

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Mon, 02 Jun 2003 07:25:46 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1:/tmp/cvs-serv13068

Modified Files:
	BaseHTTPServer.py 
Log Message:
Fix SF bug #747348 docstring mistake in BaseHTTPServer.py. \n\nBackport Candidate

Index: BaseHTTPServer.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/BaseHTTPServer.py,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** BaseHTTPServer.py	31 May 2003 07:55:43 -0000	1.26
--- BaseHTTPServer.py	2 Jun 2003 14:25:43 -0000	1.27
***************
*** 219,223 ****
          """Parse a request (internal).
  
!         The request should be stored in self.raw_request; the results
          are in self.command, self.path, self.request_version and
          self.headers.
--- 219,223 ----
          """Parse a request (internal).
  
!         The request should be stored in self.raw_requestline; the results
          are in self.command, self.path, self.request_version and
          self.headers.