diff -r 49e23a3adf26 Lib/test/test_xmlrpc.py --- a/Lib/test/test_xmlrpc.py Wed Aug 21 13:26:34 2013 +0200 +++ b/Lib/test/test_xmlrpc.py Wed Aug 21 23:45:43 2013 +0800 @@ -576,11 +576,10 @@ # protocol error; provide additional information in test output self.fail("%s\n%s" % (e, getattr(e, "headers", ""))) - # [ch] The test 404 is causing lots of false alarms. - def XXXtest_404(self): + def test_404(self): # send POST with http.client, it should return 404 header and # 'Not Found' message. - conn = httplib.client.HTTPConnection(ADDR, PORT) + conn = http.client.HTTPConnection(ADDR, PORT) conn.request('POST', '/this-is-not-valid') response = conn.getresponse() conn.close()