commit | 91c0aa3eab9781f4e3a5814f0154d51d25df4de8 | [log] [tgz] |
---|---|---|
author | eli.bendersky <devnull@localhost> | Sun Oct 16 05:50:43 2011 +0200 |
committer | eli.bendersky <devnull@localhost> | Sun Oct 16 05:50:43 2011 +0200 |
tree | c35163fff8c5a1a6103895c2371bbcaadd7550ab | |
parent | 4afc9f28d90b3e437fcbf1c038f7a7544c8903aa [diff] |
* Added EmptyStatement node to represent an empty statement (sole ';'), with tests and c-to-c support * Added sys.path update in _build_tables.py to enable it to run correctly from the pycparser folder
diff --git a/examples/tests/test_c-to-c.py b/examples/tests/test_c-to-c.py index cba62f5..8015891 100644 --- a/examples/tests/test_c-to-c.py +++ b/examples/tests/test_c-to-c.py
@@ -81,6 +81,7 @@ int main() { int a; a = 5; + ; return a; }''')