File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ include INSTALL.md
4
4
include setup.py
5
5
include tests/__init__.py
6
6
include pypreprocessor/__init__.py
7
+ include pypreprocessor/__main__.py
Original file line number Diff line number Diff line change @@ -75,6 +75,11 @@ The syntax for pypreprocessor uses a select subset of the stanard c-style prepro
75
75
# ifdef constant
76
76
```
77
77
78
+ * makes the subsequent block of code available if the specified condition is set
79
+ ``` python
80
+ # if boolean_condition
81
+ ```
82
+
78
83
* makes the subsequent block of code available if all of the preceding #ifdef statements return false
79
84
``` python
80
85
# else
Original file line number Diff line number Diff line change 2
2
# pypreprocessor.py
3
3
4
4
__author__ = 'Evan Plaice'
5
- __coauthor__ = 'Hendi O L, Epikem'
5
+ __coauthor__ = 'Hendi O L, Epikem, Laurent Pinson '
6
6
__version__ = '0.8'
7
7
8
8
import sys
You can’t perform that action at this time.
0 commit comments