vote up 2 vote down star

Is there a way to do the following preprocessor directives in Python?

#if DEBUG

< do some code >

#else

< do some other code >

#endif
flag

5 Answers

vote up 9 vote down check

There's __debug__, which is a special value that the compiler does preprocess.

if __debug__:
  print "If this prints, you're not running python -O."
else:
  print "If this prints, you are running python -O!"

__debug__ will be replaced with a constant 0 or 1 by the compiler, and the optimizer will remove any if 0: lines before your source is interpreted.

link|flag
+1 for learning something new. – David Jan 27 at 4:14
Wow this definitely answers my question! – intrepion Jan 27 at 5:45
The problem with the solution is that by default debug is true, it is only false if you run python with the -O command line switch. I find that this switch is typically not used, which is not necessarily what a user would expect. – Moe Jan 27 at 20:10
@Moe: It does seem that the logic of the flag is backwards. if debug evaluates to True I would expect that I am running in debug mode, which is not the case. – Bill the Lizard Jan 27 at 21:58
vote up 0 vote down

I'd pass in a command line argument for debugging. Read the command and it's arguments by readind sys.argv in Python. The first element in the list will be the name of the script.

link|flag
vote up 4 vote down

You can use the preprocessor in Python. Just run your scripts through the cpp (C-Preprocessor) in your bin directory. However I've done this with Lua and the benefits of easy interpretation have outweighed the more complex compilation IMHO.

link|flag
I agree, that sounds a lot more trouble than its worth! – intrepion Jan 27 at 2:14
vote up 2 vote down

You can just use the normal language constructs:

DEBUG = True
if DEBUG:
  # Define a function, a class or do some crazy stuff
  def f():
    return 23
else:
  def f():
    return 42
link|flag
vote up 13 vote down

I suspect you're gonna hate this answer. The way you do that in Python is

# code here
if DEBUG:
   #debugging code goes here
else:
   # other code here.

Since python is an interpreter, there's no preprocessing step to be applied, and no particular advantage to having a special syntax.

link|flag
Being an interpreter doesn't have anything to do with it. Nobody claims Java is interpreted, yet Java uses exactly the same technique (the D language is another example). Python is in fact a compiler, it compiles source code to bytecode and executes it in a VM, just like Java. – Greg Hewgill Jan 27 at 1:45
@Greg Hewgill: There's no value in preprocessor directives to finesse things like static type declarations or conditional code, since the one doesn't exist and the other doesn't represent a significant cost. – S.Lott Jan 27 at 3:22
Greg, go back and think about that answer. (1) Java, unlike Python, has a separate compilation phase. (2) While they never became popular, there hae been several java preprocessors. ... – Charlie Martin Jan 28 at 3:05
(con't) Now, as a quiz question, what makes a preprocessor more advantageous in C/C++ than Python? – Charlie Martin Jan 28 at 3:05

Your Answer

Get an OpenID
or

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