How can I write a lambda expression that's equivalent to:
def x():
raise Exception()
The following is not allowed:
y = lambda : raise Exception()
|
How can I write a lambda expression that's equivalent to:
The following is not allowed:
|
||||
|
No. Lambdas only accept expressions.
But if your goal is to avoid a
|
||||
|
|
|
Actually, there is a way, but it's very contrived. You can create a code object using the The solution is a hack. Callables like the result of a
The above does the following:
It works (tested in Python 2.6), but it's definitely not pretty. One last note: if you have access to the |
|||
|
|
|
Functions created with lambda forms cannot contain statements. |
|||
|
|
|
If all you want is a lambda expression that raises an arbitrary exception, you can accomplish this with an illegal expression. For instance, |
|||||||
|
|
I think it is bad form to try and do this. Lambda expressions are designed to be compact ways of writing an evaluation of an expression, not calling procedures. If you are executing some kind of function that can fail, just write a (nested) function, I can hardly imagine why you would need the compactness of a lambda expression so badly. |
|||
|
|
|
How about:
|
||||
|
y=lambda...overdef y:then? – gnibbler Nov 28 '11 at 22:23