aboutsummaryrefslogtreecommitdiff
path: root/pycparser
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2013-06-12 06:18:37 -0700
committerEli Bendersky <eliben@gmail.com>2013-06-12 06:18:37 -0700
commit39219c141c23c16728f201d192a8bf1e77d2eab3 (patch)
treeb14a442ad959d5a5894149149cdec13c5a69f8b0 /pycparser
parent1e0509ec3dae923063375ae52848589b5db18e68 (diff)
downloadpycparser-39219c141c23c16728f201d192a8bf1e77d2eab3.tar.gz
Updated CHANGES and some cosmetic cleanups
Diffstat (limited to 'pycparser')
-rw-r--r--pycparser/_build_tables.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pycparser/_build_tables.py b/pycparser/_build_tables.py
index 534f16f..ce57178 100644
--- a/pycparser/_build_tables.py
+++ b/pycparser/_build_tables.py
@@ -1,7 +1,7 @@
#-----------------------------------------------------------------
# pycparser: _build_tables.py
#
-# A dummy for generating the lexing/parsing tables and and
+# A dummy for generating the lexing/parsing tables and and
# compiling them into .pyc for faster execution in optimized mode.
# Also generates AST code from the configuration file.
# Should be called from the pycparser directory.
@@ -23,8 +23,8 @@ from pycparser import c_parser
# Generates the tables
#
c_parser.CParser(
- lex_optimize=True,
- yacc_debug=False,
+ lex_optimize=True,
+ yacc_debug=False,
yacc_optimize=True)
# Load to compile into .pyc