How to do conditional compilation in Python ?
Is it using DEF ?
|
|
How to do conditional compilation in Python ? Is it using DEF ?
|
|||
|
|
|
Python isn't compiled in the same sense as C or C++ or even Java, python files are compiled "on the fly", you can think of it as being similar to a interpreted language like Basic or Perl.1 You can do something equivalent to conditional compile by just using an if statement. For example:
You can do the same for the creation classes, setting of variables and pretty much everything. The closest way to mimic IFDEF would be to use the hasattr function. E.g.:
You could also use a try/except clause to catch name errors, but the idiomatic way would be to set a variable to None at the top of your script.
|
||||||||
|
|
|
Doesn't make much sense in a dynamic environment. If you are looking for conditional definition of functions, you can use
|
|||
|
|
|
There is actually a way to get conditional compilation, but it's very limited.
The So if your goal is to add debugging code, but prevent it from slowing down or otherwise affecting a 'release' build, this does what you want. But you cannot assign a value to |
||
|
|
|
|
Python compiles a module automatically when you import it, so the only way to avoid compiling it is to not import it. You can write something like:
But that would only work for complete modules. In C and C++ you typically use a preprocessor for conditional compilation. There is nothing stopping you from using a preprocessor on your Python code, so you could write something like:
Run that through a C preprocessor and you'd have real conditional compilation and BUT (and this is important): Conditional compilation is probably not what you want. Remember that when you import a module, Python simply executes the code in it. The def and class statements in the module are actually executed when you import the module. So the typical way of implementing what other languages would use conditional compilation for is just a normal if statement, like:
This will only define It's stuff like this that makes dynamic languages so powerful while remaining conceptually simple. |
||
|
|