Mercurial > hg > syncopation-dataset
diff Syncopation models/rhythm_parser.py @ 38:cc38b3047ed9
updated syncopation.y to allow output of sync for a bar list
also fixed some problems in models and other modules
author | christopherh <christopher.harte@eecs.qmul.ac.uk> |
---|---|
date | Mon, 13 Apr 2015 23:06:49 +0100 |
parents | 3a878de00d19 |
children | 6371e8f21f7d |
line wrap: on
line diff
--- a/Syncopation models/rhythm_parser.py Mon Apr 13 22:36:51 2015 +0100 +++ b/Syncopation models/rhythm_parser.py Mon Apr 13 23:06:49 2015 +0100 @@ -10,6 +10,7 @@ from music_objects import * comment_sign = '#' + def discard_comments(line): if comment_sign in line: line = line[0:line.find(comment_sign)]