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 maker
Recipients eric.araujo, ezio.melotti, karlcow, maker, orsenthil
Date 2011-11-16.10:25:58
SpamBayes Score 1.4464445e-05
Marked as misclassified No
Message-id <1321439159.35.0.462682753814.issue13294@psf.upfronthosting.co.za>
In-reply-to
Content
Well, actually SimpleHTTPRequesthandler extends BaseHTTPHandler with basic do_GET and do_HEAD methods.

Unittests for http.server shows that this behavior is intended, since: 
Traceback (most recent call last):
  File "Lib/test/test_httpservers.py", line 639, in <module>
    test_main()
  File "Lib/test/test_httpservers.py", line 633, in test_main
    SimpleHTTPRequestHandlerTestCase,
  File "/Users/maker/dev/cpython/Lib/test/support.py", line 1274, in run_unittest
    _run_suite(suite)
  File "/Users/maker/dev/cpython/Lib/test/support.py", line 1249, in _run_suite
    raise TestFailed(err)
test.support.TestFailed: Traceback (most recent call last):
  File "Lib/test/test_httpservers.py", line 273, in test_head
    self.check_status_and_reason(response, 200)
  File "Lib/test/test_httpservers.py", line 242, in check_status_and_reason
    self.assertEqual(response.status, status)
AssertionError: 501 != 200

So, imho this is not a bug. Anyway, I would propose a trivial patch to make http.server a little more elegant.
History
Date User Action Args
2011-11-16 10:25:59makersetrecipients: + maker, orsenthil, ezio.melotti, eric.araujo, karlcow
2011-11-16 10:25:59makersetmessageid: <1321439159.35.0.462682753814.issue13294@psf.upfronthosting.co.za>
2011-11-16 10:25:58makerlinkissue13294 messages
2011-11-16 10:25:58makercreate