git @ Cat's Eye Technologies yucca / 18db31c
The `yucca` tool runs under Python 3 by default. Chris Pressey 1 year, 12 days ago
2 changed file(s) with 3 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
114114 -----
115115
116116 `yucca` could be easily extended to warn about "code smells" such as a
117 redundant `GOTO` to the next line, a line containing another `GOTO`, and
118 so forth.
117 redundant `GOTO` to the next line, a `GOTO` to a line containing only
118 another `GOTO`, and so forth.
119119
120120 `yucca` can dump the input program with (as far as I can tell) total
121121 fidelity; it retains case and spacing of all lines, even leading and
0 #!/usr/bin/env python
0 #!/usr/bin/env python3
11
22 from os.path import realpath, dirname, join
33 import sys