summaryrefslogtreecommitdiff
path: root/pycparser/c_parser.py
Commit message (Expand)AuthorAgeFilesLines
* Various cosmetic updates to documentationEli Bendersky2015-05-101-1/+1
* Adding support for empty initializer lists.Eli Bendersky2015-05-101-2/+6
* Adding support for offsetof()Eli Bendersky2015-05-091-0/+8
* Fix parsing order of nested PtrDeclsEli Bendersky2015-04-201-12/+28
* Fix parsing of array declsEli Bendersky2015-04-201-3/+4
* Allow binary constants (e.g.: 0b01010)Konstanty Bialkowski2015-04-201-0/+1
* Decrease memory usage of pycparser by using __slots__ in AST nodes.Eli Bendersky2015-04-181-0/+2
* Align array dimension grammar with the C standard.necase2015-01-111-23/+33
* Fix issue #27: handle unified wstring literals properlyEli Bendersky2014-03-151-1/+1
* Fix issue #28: coord for 'for' loopsEli Bendersky2014-03-151-1/+2
* Fuller support for qualifiers in array dimensions.Eli Bendersky2014-01-251-4/+19
* Add support for arr[const 10] in function declarations too;Eli Bendersky2014-01-251-0/+1
* allow "static" in array parameters (GH issue #21)Robin Martinjak2014-01-221-1/+2
* Fix sys.path inclusion order in _build_tables.py (GH issue #12),Eli Bendersky2013-07-241-3/+2
* Remember last_token in the lexer, instead of using tokenfuncEli Bendersky2013-07-131-9/+4
* Cosmetic changes & commentsEli Bendersky2013-07-131-7/+13
* Support typedef names redeclared to identifiers in inner scopesSye van der Veen2013-07-111-136/+311
* Some cleanupsEli Bendersky2013-06-121-1/+0
* Cleanup after pull request #2Eli Bendersky2013-06-121-3/+6
* Functions that don't have explicit return types are assumed to return intSye van der Veen2013-06-101-6/+19
* Fix comment and trim trailing whitespaceEli Bendersky2013-01-161-255/+255
* Issue #83: Distinguish initializer lists from expression listsEli Bendersky2012-12-251-1/+1
* Googlecode issue #87: improve error reporting for parse errors to containEli Bendersky2012-12-251-1/+2
* Added ply 3.4 to be redistributed with pycparser. This aids withEli Bendersky2012-12-241-2/+2
* Issue 68Eli Bendersky2012-07-071-11/+19
* Make sure the parser remembers the coordinates of simple string typesEli Bendersky2012-07-061-11/+20
* Issue 57: support for C99 hexadecimal float constantsEli Bendersky2012-06-151-1/+3
* Issue 62: correct coord for Ellipsis nodesEli Bendersky2012-06-151-1/+1
* Transform the AST to create a correct representation of the cases inside a sw...Eli Bendersky2012-02-031-3/+5
* typo & cosmetic changesEli Bendersky2012-02-031-10/+12
* fix the case where the first statement in a file is empty (just a semicolon)....Eli Bendersky2012-01-241-1/+3
* moving CGenerator from examples/c-to-c.py into its own class in pycparser/. c...Eli Bendersky2012-01-241-3/+3
* fix reversal of specifiers & qualifiers in C generationEli Bendersky2012-01-191-1/+1
* Support for C99 _Complex type. Patch by Andreas KloecknerEli Bendersky2012-01-191-0/+1
* fixing previous fix:eli.bendersky2011-10-191-6/+4
* fix issue 48: handling of empty fileseli.bendersky2011-10-191-0/+5
* * Added EmptyStatement node to represent an empty statement (sole ';'), with ...eli.bendersky2011-10-161-1/+4
* Added support for C99 _Bool type.Even2011-09-181-0/+1
* fix a problem with previous commit:eli.bendersky2011-06-221-1/+7
* Fix for Issue #39: allow anonymous struct fields not only of union/struct typ...eli.bendersky2011-06-221-16/+16
* Basic scoping of typedefs implementedeli.bendersky2011-05-201-23/+47
* changed license notices to BSD in all fileseli.bendersky2011-04-291-1/+1
* Issue 29: some typos in CParser methodseli.bendersky2011-03-311-3/+3
* fixing issue 23: coords of castseli.bendersky2011-03-041-3/+5
* Removed portability.py, using from __future__ import print_function instead. ...eli.bendersky2011-02-181-4/+3
* some fixes to previous commit + testeli.bendersky2011-02-101-1/+4
* Issue 19: Anonymous unions within struct cause parser erroreli.bendersky2011-02-101-17/+33
* Handle empty ';' statements inside functionseli.bendersky2011-02-041-2/+3
* Fix parsing of empty declarations on the file-level (issue 17)eli.bendersky2011-02-041-1/+7
* releasing version 2.01 - removed yaml dependency, fix installation problemseli.bendersky2010-12-041-1341/+1340