Debug not stopping on ELIF statement

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By ondesic

In the past it seems like while debugging I could step through each IF/ELIF and ELSE in an IF statement. However, lately if none of the IF statements are true, it jumps over them all instead of stopping at each one.

How do I get the editor to stop on each ELIF so that I can step into them?

what do you mean by jumps over them all, is that it no longer checks them one by one?

elif statements will only be checked if the nearest if statement (and is on the same indentation) on top of it is false

LoneDespair | 2019-11-11 11:11