aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-06-26Avoid opening files with deprecated 'U' mode (#269)Jon Dufresne
Opening files with 'U' mode is deprecated. When running tests with Python warnings enabled, the warnings of the following form are emitted: DeprecationWarning: 'U' mode is deprecated return open(name, 'rU') To open files with universal newlines on both Ptyhon 2 & 3, use the io module. It defaults to opening with universal newlines and doesn't emit a warning. https://docs.python.org/3/library/io.html > When reading input from the stream, if newline is None, universal > newlines mode is enabled.
2018-06-26add more x11 related files (#265)john lee
2018-06-15Add test for "const volatile int*" parsingEli Bendersky
2018-06-10Update pypi.python.org URL to pypi.org (#262)Jon Dufresne
For details on the new PyPI, see the blog post: https://pythoninsider.blogspot.ca/2018/04/new-pypi-launched-legacy-pypi-shutting.html
2018-05-21Small cosmetic comment fixEli Bendersky
2018-05-21Replace a call to Popen by check_output in order to check that cpp returns ↵marmeladema
0. (#260)
2018-05-02Don't ship .pyc files and don't create pyc files when building tables (#135)Stefano Rivera
2018-04-27Add support for empty struct (#66) (#254)ldore
2018-04-26Fix non-generated constant expressions in designated initializers (#246) (#255)ldore
2018-04-12Fix linkEli Bendersky
2018-04-12Fix link formattingEli Bendersky
2018-04-12Update READMEs to add more details about running examplesEli Bendersky
2018-04-11Add additional trove classifiers to setup.py (#250)Jon Dufresne
- Document project as stable, ready for use in production environments - Document project license Helps library users know these values at a glance. These classifiers are displayed on the PyPI page: https://pypi.python.org/pypi/pycparser For a complete list of trove classifiers, see: https://pypi.python.org/pypi?%3Aaction=list_classifiers
2018-04-11Include license file in the generated wheel package (#249)Jon Dufresne
The wheel package format supports including the license file. This is done using the [metadata] section in the setup.cfg file. For additional information on this feature, see: https://wheel.readthedocs.io/en/stable/index.html#including-the-license-in-the-generated-wheel-file Helps package comply with its own license: > * Redistributions of source code must retain the above copyright notice, this > list of conditions and the following disclaimer. > * Redistributions in binary form must reproduce the above copyright notice, > this list of conditions and the following disclaimer in the documentation > and/or other materials provided with the distribution.
2018-03-28Fixing redefinition in Fake Headers. (#245)Seth Poulsen
* Removed va_arg definition from one of the fake headers, because it was being defined twice.
2018-03-16Fixed enum formatting in generating C code (issue #240). (#243)Seth Poulsen
* Fixed enum formatting in generating C code (issue #240). * Added another enum test. Removed twice-defined function.
2018-03-12Add fake-defines for C99 format macro constants. This closes #89. (#241)aceckel
2018-03-03Fix #235: Pragma displacing real statements (#236)dbluhm
* Fix #235: Pragma displacing real statements
2018-02-06Remove trailing whitespace from .h/.c filesEli Bendersky
2018-01-23Extend Xlib objects in fake includes (#233)Alex Nagelkerke
* Extend Xlib objects in fake includes * Move X11 typedefs and defines to X11 subdirectory. Remove unecessarry function declarations header
2018-01-17Implement __repr__ on Nodes (Issue #226) (#227)ldore
* Implement __repr__ on Nodes.
2017-12-31Add clicky link for examples (#209)B M Corser
2017-12-31Add missing fake_libc_includes for POSIX.1-2008 compatibility (#228)Bart Clephas
2017-11-22Minor cleanupsEli Bendersky
- Removed unnecessary whitespace - Removed old & stale 'if __main__' sections in some of the library files
2017-11-22Add support for #pragma in struct_declaration (Issue #221). (#222)ldore
2017-11-20Improve NodeVisitor performance, add iterator on Node children (Issue #219). ↵ldore
(#220) Improve NodeVisitor performance, add iterator on Node children.
2017-10-18Format enums with one value per line (#216)Kyle Altendorf
* Format enums with one value per line Issue #213
2017-10-10Add Python 3.6 (#214)Hugo
* Add Python 3.6 Plus the other explicit major.minor versions supported
2017-07-21Add README clarification re -OO; relevant to #198Eli Bendersky
2017-07-13Address an import of pycparser in -OO mode.Eli Bendersky
In this mode there are no docstrings; we don't want an instantiation of CParser to fail, though it won't actually work correctly if used. See #197 and #198
2017-07-04Add clarification about making releases in TODO.txtEli Bendersky
2017-07-04Update version number to 2.18 for releaseEli Bendersky
2017-07-04Update READMEEli Bendersky
2017-04-21Good time to drop Python 2.6 testing from TravisEli Bendersky
It doesn't support unittest.skipUnless, and I don't officially support 2.6 any more anyways
2017-04-21Add more Python versions for AppVeyor CI and add badge to READMEEli Bendersky
2017-04-21Conditinally skipping cpp-using tests unless platform is LinuxEli Bendersky
2017-04-21Trying to fix appveyor.ymlEli Bendersky
2017-04-21Adding simple appveyor.yml file for CI on appveyorEli Bendersky
2017-04-19Add compound literal support to CGenerator (eliben/pycparser#176) (#188)Julian Priestley
2017-04-07Basic AST dumping sampleEli Bendersky
2017-04-03Remove myself from the copyrights inside the ply directoryEli Bendersky
2017-04-03Updates vendored PLY library to v3.10 (#184)Loren Gordon
Fixes #175
2017-03-16Add fakedef (#183)Jean-Sébastien B
* Add Mir typedefs in fake headers * Add xcb includes to fake includes
2017-03-16Merge branch 'master' of github.com:eliben/pycparserEli Bendersky
2017-03-16Add basic XLib objects in fake package of pycparser (#180)Jean-Sébastien B
2017-03-10Update CHANGES and clean up the explore_ast exampleEli Bendersky
2017-03-10Add column support in c_parser (#178)serpilliere
2017-03-04Python 3.6 invalid escape sequence deprecation fixes (#177)Ville Skyttä
https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior
2017-02-26Clean up cdecl.py a bitEli Bendersky
2017-02-26Add support for expanding struct and typedef -- Issue 93 (#174)Hart Chu
* Add support for expanding struct and typedef * Make expansion return a new node instead of in-place modification