This reminds me we don't enforce the singleton pattern for NoneType: type(None)() builds a new bogus instance of NoneType which 'is not' None.
Although it seems an easy fix
--
You received this message because you are subscribed to the Google Groups "lambda-py" group.
To unsubscribe from this group and stop receiving emails from it, send an email to lambda-py+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Or simply NoneType.new to raise an exception since the good one is bult by other means