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