[Python-3000-checkins] r59423 - python/branches/py3k/Lib/test/test_xmlrpc.py

christian.heimes python-3000-checkins at python.org
Sat Dec 8 17:13:07 CET 2007


Author: christian.heimes
Date: Sat Dec  8 17:13:06 2007
New Revision: 59423

Modified:
   python/branches/py3k/Lib/test/test_xmlrpc.py
Log:
Disabled test_404, see issue #1572

Modified: python/branches/py3k/Lib/test/test_xmlrpc.py
==============================================================================
--- python/branches/py3k/Lib/test/test_xmlrpc.py	(original)
+++ python/branches/py3k/Lib/test/test_xmlrpc.py	Sat Dec  8 17:13:06 2007
@@ -328,12 +328,11 @@
             # protocol error; provide additional information in test output
             self.fail("%s\n%s" % (e, e.headers))
 
-    def test_404(self):
+    def DISABLED_test_404(self):
         # send POST with httplib, it should return 404 header and
         # 'Not Found' message.
-        import pdb; pdb.set_trace()
         conn = httplib.HTTPConnection('localhost', PORT)
-        conn.request(b'POST', b'/this-is-not-valid')
+        conn.request('POST', '/this-is-not-valid')
         response = conn.getresponse()
         conn.close()
 


More information about the Python-3000-checkins mailing list