Imri Goldberg <[EMAIL PROTECTED]> added the comment: This is not a bug, just missing parenthesis. >>> lambda x: x,x Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'x' is not defined >>> lambda x: (x,x) <function <lambda> at 0x8293e2c>
---------- nosy: +lorg __________________________________ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2283> __________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com