7 Nov
2002
7 Nov
'02
2:28 a.m.
If a method in a Zope product has REQUEST as optional parameter: def something(self, REQUEST=None): ... why is the REQUEST always compared with None: if REQUEST is not None: .. instead of just: if REQUEST: .. ? - Willem