summaryrefslogtreecommitdiff
path: root/TODO.txt
blob: 16a056c7d15d7ad25412129e837cc21c7afc31dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Todo
----


Changes since last
------------------

* <write directly in CHANGES!>

Version Update
--------------

setup.py, __init__.py, README.txt, CHANGES
- Make sure _build_tables was run in pycparser/ and the tables are in the
  MANIFEST
- Tag in hg
- If PLY version changes, note it in README and ply/LICENSE


Build docs and distribution
---------------------------

No need to build the doc now, README is rendered by Bitbucket
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