[Zope] LocalFS and 2.4.x

Dieter Maurer dieter@handshake.de
Mon, 12 Nov 2001 00:01:31 +0100


Michael Best writes:
 > The only real difference from the previous patch is:
 > 
 >         if bad_id(id) != None:
 > 
 > becomes:
 > 
 >         if bad_id(id) is not None:
The two should be functionally equivalent,
with the second variant a bit faster...


Dieter