[Zope3-checkins] CVS: Zope3/src/zope/publisher - browser.py:1.10
Jim Fulton
jim@zope.com
Thu, 6 Mar 2003 17:48:06 -0500
Update of /cvs-repository/Zope3/src/zope/publisher
In directory cvs.zope.org:/tmp/cvs-serv17496
Modified Files:
browser.py
Log Message:
Added a missing StringIO import in TestRequest.
=== Zope3/src/zope/publisher/browser.py 1.9 => 1.10 ===
--- Zope3/src/zope/publisher/browser.py:1.9 Thu Feb 13 12:46:20 2003
+++ Zope3/src/zope/publisher/browser.py Thu Mar 6 17:48:03 2003
@@ -729,6 +729,7 @@
body_instream = StringIO('')
if outstream is None:
+ from StringIO import StringIO
outstream = StringIO()
super(TestRequest, self).__init__(body_instream, outstream, _testEnv)