[Zope] Propblem with script from Zope book

Jamie greatbks@truevine.net
Fri, 11 Apr 2003 11:20:53 -0400


I'm having problems running this example script from the Zope Book,
Advanced Scripting Chapter, p. 183

"""
Returns all sub-objects that have a given status
property.
"""
results=[]
for object in context.objectValues():
    if object.getProperty('status') == status:
        results.append(object)
return results

It seems to be starting an endless loop or something, the browser can
sit for a half an hour and still not change.

Jamie White
Jamie@brobus.net