Are there any guarded commands in Python? And what are they? I've searched every where, but i can't find it.
Asked
Active
Viewed 374 times
1 Answers
0
The only preprocessor directive I was able to fine was the __debug__
statement as explained by this answer.
It compiles to True
when running python without any optimizations (no -O
flag) and can optimize certain if statements as seen here.