Subject Re: NULL and equality
Author peter_jacobi.rm
--- In firebird-support@yahoogroups.com, "Martijn Tonies" wrote:
> Is that say? Gimme an example :-)

In Python, you can test for None with the value-equality
operator "==", but it is advised to use the object identity
operator "is" for performance reasons.

foo == None # allowed, but slower
foo is None # preferred

Regards,
Peter Jacobi