File tree Expand file tree Collapse file tree 5 files changed +1
-7
lines changed Expand file tree Collapse file tree 5 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 40
40
41
41
# This is not required if you've installed pycparser into
42
42
# your site-packages/ with setup.py
43
- #
44
43
sys .path .extend (['.' , '..' ])
45
44
46
45
from pycparser import parse_file , c_ast
Original file line number Diff line number Diff line change 37
37
38
38
# This is not required if you've installed pycparser into
39
39
# your site-packages/ with setup.py
40
- #
41
40
sys .path .extend (['.' , '..' ])
42
41
43
42
from pycparser import c_parser , c_ast
Original file line number Diff line number Diff line change 16
16
17
17
# This is not required if you've installed pycparser into
18
18
# your site-packages/ with setup.py
19
- #
20
19
sys .path .extend (['.' , '..' ])
21
20
22
21
from pycparser import c_parser
Original file line number Diff line number Diff line change 1
1
#-----------------------------------------------------------------
2
2
# pycparser: using_cpp_libc.py
3
3
#
4
- # Shows how to use the provided 'cpp' (on Windows, substitute for
5
- # the 'real' cpp if you're on Linux/Unix) and "fake" libc includes
4
+ # Shows how to use 'cpp' (the C pre-processor binary) and "fake" libc includes
6
5
# to parse a file that includes standard C headers.
7
6
#
8
7
# Eli Bendersky [https://eli.thegreenplace.net/]
12
11
13
12
# This is not required if you've installed pycparser into
14
13
# your site-packages/ with setup.py
15
- #
16
14
sys .path .extend (['.' , '..' ])
17
15
18
16
from pycparser import parse_file
Original file line number Diff line number Diff line change 12
12
13
13
# This is not required if you've installed pycparser into
14
14
# your site-packages/ with setup.py
15
- #
16
15
sys .path .extend (['.' , '..' ])
17
16
18
17
from pycparser import parse_file
You can’t perform that action at this time.
0 commit comments