Re[5]: [Zope3-dev] RFC: should z.a.c.attribute.AttributeIndex index None values?

2006-11-17 Thread Adam Groszer
Hello Gary, At the moment it is try: value = value() except: return None So that will eat the exception without any signs. That makes me also glum when I have to dig deep to discover that something ate an exception. I propose to remove the try/except. Is that OK? Friday, November 17,

Re: Re[5]: [Zope3-dev] RFC: should z.a.c.attribute.AttributeIndex index None values?

2006-11-17 Thread Gary Poster
On Nov 17, 2006, at 11:29 AM, Adam Groszer wrote: Hello Gary, At the moment it is try: value = value() except: return None So that will eat the exception without any signs. That makes me also glum when I have to dig deep to discover that something ate an exception. I propose to