Chris Angelico wrote:
On Fri, Jul 29, 2011 at 7:03 AM, Ethan Furman <et...@stoneleaf.us> wrote:
I'll use a lambda to get around it, but that's not very elegant.  Why
shouldn't NoneType be able to return the singleton None?

Why a lambda?

def ThisFunctionWillReturnNone():
    pass

Although, since the returning of None is crucial to it, it'd probably
be better to explicitly "return None". But minimalist useful functions
are amusing.

More amusing still:

def NoneType():
    "Returns None"

~Ethan~
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to