summaryrefslogtreecommitdiff
path: root/pycparser/ast_transforms.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix declname for _Atomic specifiers, and add c-to-c testsEli Bendersky2021-09-141-2/+5
| | | | Updates #430
* A different, more robust appoach to fix _Atomic specifiers.Eli Bendersky2021-09-131-0/+55
| | | | | Now the ASTs produced are more correct, and more complex cases work like nested _Atomic(...) specifiers.
* Fix error transforming an empty switch (#346)Tyson Andre2019-08-211-1/+2
| | | | | | | | | | | | | * Fix error transforming an empty switch The parser would crash on that line for `switch(1) {}` because NoneType is not iterable. Fixes #345 * Add a test of empty switch statements * Address review comments
* Use https:// for all project links where available (#267)Jon Dufresne2018-06-261-1/+1
|
* Remove Copyright from every source fileEli Bendersky2017-02-021-1/+1
| | | | Replace it by website link; copyright appears in the LICENSE file already, which is sufficient
* Fix trivial comment typo.Matthew Fernandez2016-03-091-1/+1
|
* Various cosmetic updates to documentationEli Bendersky2015-05-101-1/+1
|
* cleanupsEli Bendersky2013-09-251-1/+1
|
* Transform the AST to create a correct representation of the cases inside a ↵Eli Bendersky2012-02-031-0/+105
switch statement