[Zope3-checkins] SVN: Zope3/branches/3.2/ backported publisher bugfix from trunk

Bernd Dorn bernd.dorn at fhv.at
Fri Apr 14 09:48:22 EDT 2006


Log message for revision 66943:
  backported publisher bugfix from trunk

Changed:
  U   Zope3/branches/3.2/doc/CHANGES.txt
  U   Zope3/branches/3.2/src/zope/publisher/http.py

-=-
Modified: Zope3/branches/3.2/doc/CHANGES.txt
===================================================================
--- Zope3/branches/3.2/doc/CHANGES.txt	2006-04-14 13:32:01 UTC (rev 66942)
+++ Zope3/branches/3.2/doc/CHANGES.txt	2006-04-14 13:48:21 UTC (rev 66943)
@@ -17,6 +17,9 @@
 
       - Fixed issue 448, SingleDataHelper.hidden() raised a LookupError
         if there was no input value.
+        
+      - Fixed a bug in zope.publisher.http which raises a TypeError
+        when using zserver and xmlrpc.
 
   Zope 3.2.1 (2006/03/26)
 

Modified: Zope3/branches/3.2/src/zope/publisher/http.py
===================================================================
--- Zope3/branches/3.2/src/zope/publisher/http.py	2006-04-14 13:32:01 UTC (rev 66942)
+++ Zope3/branches/3.2/src/zope/publisher/http.py	2006-04-14 13:48:21 UTC (rev 66943)
@@ -203,7 +203,7 @@
         self.cacheStream.write(data)
         return data
 
-    def readlines(self, hint=None):
+    def readlines(self, hint=0):
         data = self.stream.readlines(hint)
         self.cacheStream.write(''.join(data))
         return data



More information about the Zope3-Checkins mailing list