This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author dalke
Recipients dalke
Date 2009-10-19.23:40:15
SpamBayes Score 0.028740833
Marked as misclassified No
Message-id <1255995617.49.0.338501065571.issue7172@psf.upfronthosting.co.za>
In-reply-to
Content
BaseHTTPServer.BaseHTTPRequestHandler.responses contains a mapping from 
HTTP status codes to the 2-ple (shortmessage, longmessage), based on RFC 
2616.

The 2-ple for 405 is ('Method Not Allowed','Specified method is invalid 
for this server.'),

RFC 405 says "An origin server SHOULD return the status code 405 (Method 
Not Allowed) if the method is known by the origin server but not allowed 
for the requested resource.

I think the message should be "Specified method is invalid for this 
resource". That is, change "server" to "resource".
History
Date User Action Args
2009-10-19 23:40:17dalkesetrecipients: + dalke
2009-10-19 23:40:17dalkesetmessageid: <1255995617.49.0.338501065571.issue7172@psf.upfronthosting.co.za>
2009-10-19 23:40:16dalkelinkissue7172 messages
2009-10-19 23:40:15dalkecreate