-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathCHANGELOG
80 lines (45 loc) · 1.97 KB
/
CHANGELOG
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
Version 0.1.7:
2004-04-30:
- Added scientific calculator example (calc1)
- Added support for error-handling rules
- Added support for rule handlers to raise errors
Version 0.1.6:
2004-04-30:
- Added ANSI C parser to examples
Version 0.1.5:
2004-04-30:
- Added XML support - can now export and import parse trees to/from
XML strings or xml.dom.minidom objects
Version 0.1.4:
2004-04-29:
- Improved the layout and usability of python parser files generated
by the bison2py utility, particularly with the '-c' option enabled
- fixed the 'template' example, so that it actually works if used as is
- tidied up and fleshed out the walkthrough document
Version 0.1.3:
2004-04-28:
- java example:
- replaced grammar file with an adapted version of one
from the GNU gcj compiler source - the damn thing works now!
- fixed lex script
- core - added support for a 'debug' flag keyword argument to Parser.run(),
which causes the bison-generated parser to haemorrhage out all manner of
detailed debug info
- various other fixes and tidy-ups
Version 0.1.2:
2004-04-25:
- moved pure-python code from bison.pyx (now renamed to bison_.pyx),
into a new file 'bison.py'.
- patched by Eugene Oden to fix bug in processing legacy rules files
in cases where rules contained character literals
- added '-c' option to bison2py utility, which causes the generation
of handler code as separate node classes instead of methods
Version 0.1.1:
2004-04-23:
- changed call signature for user target callbacks, to a much faster and
more convenient form
- fixed several fatal bugs
- added java parser example
Version 0.1.0:
2004-04-23:
- first release