blob: 4240e7b34f414112627986ce774fcc2233e5e191 [file] [log] [blame]
Todo
----
Version Update
--------------
setup.py, __init__.py, README, CHANGES
- Make sure _build_tables was run in pycparser/
- Tag in git. When pushing to GitHub, git push --tags
- If PLY version changes, note it in README and ply/LICENSE
- Run tox tests
python setup.py sdist upload
Misc
----
yacc optimization:
- If parsetab.py/pyc doesn't exist in the path, the table will be reconstructed
anyway, regardless of the optimize parameter
- If it does exist:
- If optimize=True, the table will be loaded unconditionally
- If optimize=False, the table will be loaded only if it's older than the grammar
lex optimization:
- If optimize=False, the lexical table is re-computed and is not saved to a lextab file
- If optimize=True:
- If lextab.py/pyc exists in the path, it will be loaded unconditionally
- If lextab.py/pyc doesn't exist, it will be created and loaded