spiffyscore

Check-in [ff84293301]
Login
Overview
Comment:Added basic ABC tokenizing via the PLY module
Timelines: family | ancestors | descendants | both | ply
Files: files | file ages | folders
SHA1: ff84293301f5c07b22fab047deb7676ebc8d19b3
User & Date: spiffytech@gmail.com on 2010-11-13 08:28:35
Other Links: branch diff | manifest | tags
Context
2010-11-16
08:29
Now parses notes, accidentals, and octaves check-in: bd456efa03 user: spiffytech@gmail.com tags: ply
2010-11-13
08:28
Added basic ABC tokenizing via the PLY module check-in: ff84293301 user: spiffytech@gmail.com tags: ply
08:26
Added basic ABC tokenizing via the PLY module check-in: 729263ecd0 user: spiffytech@gmail.com tags: ply
Changes

Modified parse.py from [7bbfef5961] to [17628fda61].

1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python

from ply import lex

tokens = (
    "NOTE",
    "REST",
    "SHARP",
    "FLAT",
    "OCTAVE",


|







1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python

from ply import lex, yacc

tokens = (
    "NOTE",
    "REST",
    "SHARP",
    "FLAT",
    "OCTAVE",