]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Typo: the method called is do_SPAM, not handle_SPAM.
authorGuido van Rossum <guido@python.org>
Wed, 15 Sep 1999 15:28:25 +0000 (15:28 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 15 Sep 1999 15:28:25 +0000 (15:28 +0000)
Lib/BaseHTTPServer.py

index 8399267bd30647eb7593640c9acdd6ff79d832b7..6707df21e33312627a85838331370afdfab20ff2 100644 (file)
@@ -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 (<command>).  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: