summaryrefslogtreecommitdiff
path: root/pycparser/c_lexer.py
Commit message (Expand)AuthorAgeFilesLines
* Feature/add pragma support (#487)Jordy Ruiz2023-01-081-0/+1
* Fix typos (#443)Kian Meng Ang2021-10-181-2/+2
* Fix Flake8 Errors (#442)Eisuke Kawashima2021-10-151-1/+0
* Implement u8, u, and U strings from C11 (#439)Vitaly Cheptsov2021-10-051-0/+36
* Implement _Alignas and _Alignof support with tests (#435)Vitaly Cheptsov2021-10-041-1/+2
* Support _Atomic as a qualifierEli Bendersky2021-09-131-2/+2
* Introduce partial C11 support (#429)Vitaly Cheptsov2021-08-311-7/+11
* Recognize integer multicharacter constants like 'ABCD' (#350)yaroslav-o2019-09-251-1/+6
* Fix slow backtracking when parsing strings (no external deps) (#347)Tyson Andre2019-08-261-7/+32
* Use https:// for all project links where available (#267)Jon Dufresne2018-06-261-1/+1
* Minor cleanupsEli Bendersky2017-11-221-1/+0
* Python 3.6 invalid escape sequence deprecation fixes (#177)Ville Skyttä2017-03-041-2/+2
* Remove Copyright from every source fileEli Bendersky2017-02-021-1/+1
* Add support for the __int128 type.Manuel Jacob2017-01-121-1/+1
* Improve the behavior of pathological bad string literals a bit.Eli Bendersky2016-10-101-1/+1
* Adding test for exercising issue #61Eli Bendersky2016-10-101-1/+1
* Add support for #pragmaJulian Hammer2015-10-201-9/+9
* Various cosmetic updates to documentationEli Bendersky2015-05-101-1/+1
* Adding support for offsetof()Eli Bendersky2015-05-091-1/+2
* Allow binary constants (e.g.: 0b01010)Konstanty Bialkowski2015-04-201-1/+8
* Fix #33 pragma error when '=' occurs.wvi2014-09-091-1/+1
* Remember last_token in the lexer, instead of using tokenfuncEli Bendersky2013-07-131-2/+5
* Cosmetic changes & commentsEli Bendersky2013-07-131-3/+3
* Cosmetic cleanupsEli Bendersky2013-07-131-6/+5
* Support typedef names redeclared to identifiers in inner scopesSye van der Veen2013-07-111-6/+32
* Some cleanupsEli Bendersky2013-06-121-82/+50
* Merge pull request #4 from Syeberman/dollar-in-identifierEli Bendersky2013-06-121-2/+2
|\
| * Dollar signs in identifiers; non-standard, but supported by many compilersSye van der Veen2013-06-101-2/+2
* | Fixed handling of some integer suffix corner casesSye van der Veen2013-06-101-1/+1
|/
* Issue #86: fix token column computationEli Bendersky2012-12-251-5/+2
* Googlecode issue #87: improve error reporting for parse errors to containEli Bendersky2012-12-251-8/+10
* Added ply 3.4 to be redistributed with pycparser. This aids withEli Bendersky2012-12-241-3/+3
* Fixes for issue 74: pass decimal escapes \<num> in the lexereliben2012-08-101-2/+5
* Issue 73: initial pragma implementationEli Bendersky2012-08-101-9/+34
* Make sure the parser remembers the coordinates of simple string typesEli Bendersky2012-07-061-3/+0
* Issue 57: support for C99 hexadecimal float constantsEli Bendersky2012-06-151-5/+13
* Support for C99 _Complex type. Patch by Andreas KloecknerEli Bendersky2012-01-191-2/+4
* Fix for issue 50, added support for more windows chars in #line path.Even2011-11-061-3/+3
* Issue 49: Allow dots ('.') in string escapes for the sake of #line directives...eli.bendersky2011-10-311-4/+4
* - cosmetic fixes for the _Bool patcheli.bendersky2011-09-241-6/+5
* Added support for C99 _Bool type.Even2011-09-181-3/+7
* changed license notices to BSD in all fileseli.bendersky2011-04-291-1/+1
* Removed portability.py, using from __future__ import print_function instead. ...eli.bendersky2011-02-181-3/+2
* Implemented 'long long' type support for C99eli.bendersky2010-10-301-1/+1
* Implemented declarations in first expr of a For loop, for C99eli.bendersky2010-10-291-2/+2
* initial import from SVNEli Bendersky2010-05-211-0/+445