aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2018-05-21 06:22:15 -0700
committerEli Bendersky <eliben@gmail.com>2018-05-21 06:22:15 -0700
commit03bd304ff7e2466327595abe640e8ed7eb22bd15 (patch)
treee482b525ec02d45ff93a05f8626c60121a129897
parent5549e39e717b331f4bf3b8bfd024ba881074bc5e (diff)
downloadplatform_external_python_pycparser-03bd304ff7e2466327595abe640e8ed7eb22bd15.tar.gz
platform_external_python_pycparser-03bd304ff7e2466327595abe640e8ed7eb22bd15.tar.bz2
platform_external_python_pycparser-03bd304ff7e2466327595abe640e8ed7eb22bd15.zip
Small cosmetic comment fix
-rw-r--r--pycparser/__init__.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/pycparser/__init__.py b/pycparser/__init__.py
index 9abd6fc..b7228d7 100644
--- a/pycparser/__init__.py
+++ b/pycparser/__init__.py
@@ -38,7 +38,6 @@ def preprocess_file(filename, cpp_path='cpp', cpp_args=''):
try:
# Note the use of universal_newlines to treat all newlines
# as \n for Python's purpose
- #
text = check_output(path_list, universal_newlines=True)
except OSError as e:
raise RuntimeError("Unable to invoke 'cpp'. " +