I would like to know if there is a way of writing the below module code without having to add another indentation level the whole module code.

# module code
if not condition:
    # rest of the module code (big)

I am looking for something like this:

# module code
if condition:
    # here I need something like a `return`
# rest of the module code (big)

Note, I do not want to throw an Exception, the import should pass normally.

link|improve this question

64% accept rate
9  
I don't know of any solution to that, but I guess you could put all your code in an internal module and import that if the condition is not met. – UncleZeiv Oct 13 '11 at 13:15
@UncleZeiv: that's a good idea, you should post it as an answer! – TokenMacGuy Oct 13 '11 at 13:29
What's with the aversion to indentation? – Austin Marshall Oct 13 '11 at 13:48
@TokenMacGuy ok, done that, cheers. – UncleZeiv Oct 13 '11 at 14:33
feedback

2 Answers

up vote 5 down vote accepted

I don't know of any solution to that, but I guess you could put all your code in an internal module and import that if the condition is not met.

link|improve this answer
Thanks, if nobody comes with a better idea in few days this remains the correct answer. – Sorin Sbarnea Oct 13 '11 at 17:29
feedback

I know of no way to do this. The only thing I could imagine that would work would be return but that needs to be inside a function.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.