Skip to content

Commit

Permalink
Tweak comments of examples
Browse files Browse the repository at this point in the history
  • Loading branch information
eliben committed Dec 20, 2024
1 parent 86030fe commit ede7539
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 7 deletions.
1 change: 0 additions & 1 deletion examples/c_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@

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

from pycparser import parse_file, c_ast
Expand Down
1 change: 0 additions & 1 deletion examples/cdecl.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@

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

from pycparser import c_parser, c_ast
Expand Down
1 change: 0 additions & 1 deletion examples/explore_ast.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

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

from pycparser import c_parser
Expand Down
4 changes: 1 addition & 3 deletions examples/using_cpp_libc.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#-----------------------------------------------------------------
# pycparser: using_cpp_libc.py
#
# Shows how to use the provided 'cpp' (on Windows, substitute for
# the 'real' cpp if you're on Linux/Unix) and "fake" libc includes
# Shows how to use 'cpp' (the C pre-processor binary) and "fake" libc includes
# to parse a file that includes standard C headers.
#
# Eli Bendersky [https://eli.thegreenplace.net/]
Expand All @@ -12,7 +11,6 @@

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

from pycparser import parse_file
Expand Down
1 change: 0 additions & 1 deletion examples/using_gcc_E_libc.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

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

from pycparser import parse_file
Expand Down

0 comments on commit ede7539

Please sign in to comment.