summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_xmlrpc.py
diff options
context:
space:
mode:
authorKristján Valur Jónsson <kristjan@ccpgames.com>2009-01-11 16:23:37 (GMT)
committerKristján Valur Jónsson <kristjan@ccpgames.com>2009-01-11 16:23:37 (GMT)
commit3c43fcba8b67ea0cec4a443c755ce5f25990a6cf (patch)
treeedeacfd07bfbaeb7ea70377b65548447408acf48 /Lib/test/test_xmlrpc.py
parenteefda27e97271f61b669410f7f6554466045f52a (diff)
downloadcpython-3c43fcba8b67ea0cec4a443c755ce5f25990a6cf.zip
cpython-3c43fcba8b67ea0cec4a443c755ce5f25990a6cf.tar.gz
cpython-3c43fcba8b67ea0cec4a443c755ce5f25990a6cf.tar.bz2
Issue 4879: Allow buffering for HTTPResponse
Diffstat (limited to 'Lib/test/test_xmlrpc.py')
-rw-r--r--Lib/test/test_xmlrpc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_xmlrpc.py b/Lib/test/test_xmlrpc.py
index c9294b1..6b36109 100644
--- a/Lib/test/test_xmlrpc.py
+++ b/Lib/test/test_xmlrpc.py
@@ -655,7 +655,7 @@ class FakeSocket:
def getvalue(self):
return self.data.getvalue()
- def makefile(self, x, y):
+ def makefile(self, x='r', y=-1):
raise RuntimeError
class FakeTransport(xmlrpclib.Transport):