On Fri, Dec 25, 2009 at 12:40 PM, Victor Subervi <victorsube...@gmail.com> wrote: > > It returns nothing. I believe I've stated that three times now.
In Python, that's not possible. Every function returns something. If you think it returns nothing, it probably returns None. >>> def foo() : pass ... >>> a = foo() >>> print a None -- http://mail.python.org/mailman/listinfo/python-list