Comment 16 for bug 98284

Revision history for this message
Marius Gedminas (mgedmin) wrote :

The change in rev 89888 causes these errors for me:

  File "/home/mg/tmp/buildout-eggs/zope.publisher-3.4.4-py2.5.egg/zope/publisher/http.py", line 218, in readline
    data = self.stream.readline(size)
TypeError: an integer is required

self.stream is a cStringIO.StringIO. Its readline method does not like size=None at all. You need to either pass an integer, or not pass the argument at all.

Reopening bug.