From: Guido van Rossum Date: Wed, 15 Sep 1999 15:28:25 +0000 (+0000) Subject: Typo: the method called is do_SPAM, not handle_SPAM. X-Git-Tag: v1.6a1~919 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ba895d892d2fd129903a6c71b7b7b6814e70dd77;p=thirdparty%2FPython%2Fcpython.git Typo: the method called is do_SPAM, not handle_SPAM. --- diff --git a/Lib/BaseHTTPServer.py b/Lib/BaseHTTPServer.py index 8399267bd306..6707df21e333 100644 --- a/Lib/BaseHTTPServer.py +++ b/Lib/BaseHTTPServer.py @@ -172,7 +172,7 @@ class BaseHTTPRequestHandler(SocketServer.StreamRequestHandler): This server parses the request and the headers, and then calls a function specific to the request type (). Specifically, - a request SPAM will be handled by a method handle_SPAM(). If no + a request SPAM will be handled by a method do_SPAM(). If no such method exists the server sends an error response to the client. If it exists, it is called with no arguments: