[Zope-Checkins] CVS: Zope3/lib/python/Zope/Publisher/XMLRPC - XMLRPCRequest.py:1.1.2.3
Shane Hathaway
shane@cvs.zope.org
Fri, 12 Apr 2002 17:31:25 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/Publisher/XMLRPC
In directory cvs.zope.org:/tmp/cvs-serv20835/lib/python/Zope/Publisher/XMLRPC
Modified Files:
Tag: Zope-3x-branch
XMLRPCRequest.py
Log Message:
Merged Zope3-Server-Branch.
=== Zope3/lib/python/Zope/Publisher/XMLRPC/XMLRPCRequest.py 1.1.2.2 => 1.1.2.3 ===
class TestRequest(XMLRPCRequest):
- def __init__(self, body_instream=None, outstream=None, environ=None, **kw):
+ def __init__(self, body_instream=None, outstream=None, environ=None,
+ response=None, **kw):
_testEnv = {
'SERVER_URL': 'http://127.0.0.1',
@@ -78,5 +79,6 @@
if outstream is None:
outstream = StringIO()
- super(TestRequest, self).__init__(body_instream, outstream, _testEnv)
-
+ super(TestRequest, self).__init__(
+ body_instream, outstream, _testEnv, response)
+