Skip to content

Commit ede7539

Browse files
committed
Tweak comments of examples
1 parent 86030fe commit ede7539

File tree

5 files changed

+1
-7
lines changed

5 files changed

+1
-7
lines changed

examples/c_json.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040

4141
# This is not required if you've installed pycparser into
4242
# your site-packages/ with setup.py
43-
#
4443
sys.path.extend(['.', '..'])
4544

4645
from pycparser import parse_file, c_ast

examples/cdecl.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737

3838
# This is not required if you've installed pycparser into
3939
# your site-packages/ with setup.py
40-
#
4140
sys.path.extend(['.', '..'])
4241

4342
from pycparser import c_parser, c_ast

examples/explore_ast.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
# This is not required if you've installed pycparser into
1818
# your site-packages/ with setup.py
19-
#
2019
sys.path.extend(['.', '..'])
2120

2221
from pycparser import c_parser

examples/using_cpp_libc.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#-----------------------------------------------------------------
22
# pycparser: using_cpp_libc.py
33
#
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
65
# to parse a file that includes standard C headers.
76
#
87
# Eli Bendersky [https://eli.thegreenplace.net/]
@@ -12,7 +11,6 @@
1211

1312
# This is not required if you've installed pycparser into
1413
# your site-packages/ with setup.py
15-
#
1614
sys.path.extend(['.', '..'])
1715

1816
from pycparser import parse_file

examples/using_gcc_E_libc.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
# This is not required if you've installed pycparser into
1414
# your site-packages/ with setup.py
15-
#
1615
sys.path.extend(['.', '..'])
1716

1817
from pycparser import parse_file

0 commit comments

Comments
 (0)