Dear All,

zope.server.serverchannelbase.received requires preq, an IStreamConsumer, to have a boolean attribute named `empty' that is not mentioned in the interface. A patch against the trunk (rev 38459) is attached, which adds this attribute to the interface.

Thanks.



Chad Whitacre


P.S. I tried to file this as a bug+solution in the Z3d Issue Collector, but when I submitted the "New Issue" form, I was given a login screen. After several login attempts, I went through the "forgotten password" process, but never received an email. The only other thing I can think of is that my email address on record is bad, but I don't know how to verify or fix that.

Index: src/zope/server/interfaces/__init__.py
===================================================================
--- src/zope/server/interfaces/__init__.py      (revision 38459)
+++ src/zope/server/interfaces/__init__.py      (working copy)
@@ -195,7 +195,10 @@
     completed = Attribute(
         'completed', 'Set to a true value when finished consuming data.')

+    empty = Attribute(
+        'empty', 'Set if no request was made.')

+
 class IServer(Interface):
     """This interface describes the basic base server.

_______________________________________________
Zope3-dev mailing list
Zope3-dev@zope.org
Unsub: http://mail.zope.org/mailman/options/zope3-dev/archive%40mail-archive.com

Reply via email to