[Python-checkins] r68597 - python/trunk/Lib/xmlrpclib.py

benjamin.peterson python-checkins at python.org
Wed Jan 14 00:43:51 CET 2009


Author: benjamin.peterson
Date: Wed Jan 14 00:43:50 2009
New Revision: 68597

Log:
fix test_xmlrpc failures #4939

Modified:
   python/trunk/Lib/xmlrpclib.py

Modified: python/trunk/Lib/xmlrpclib.py
==============================================================================
--- python/trunk/Lib/xmlrpclib.py	(original)
+++ python/trunk/Lib/xmlrpclib.py	Wed Jan 14 00:43:50 2009
@@ -1245,7 +1245,7 @@
 
         self.verbose = verbose
 
-        return self._parse_response(h.getfile())
+        return self.parse_response(h.getfile())
 
     ##
     # Create parser.


More information about the Python-checkins mailing list