From: hanwen Date: Thu, 14 Jul 2005 22:48:56 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: ikebana/2.7.1~8 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c3e3d00b154f3ff311b471a6fff6b9d2548cf7e6;p=lilypond.git *** empty log message *** --- diff --git a/music.py b/music.py index 47c056f55c..e0c7477148 100644 --- a/music.py +++ b/music.py @@ -112,7 +112,6 @@ class Music_document: self.tag_dict = {} def recompute (self): - print 'recop' self.tag_dict = {} self.music.set_tag (0, self.tag_dict) self.music.set_start (0.0) diff --git a/notation.py b/notation.py index a335cec4ef..84b306247e 100644 --- a/notation.py +++ b/notation.py @@ -88,7 +88,6 @@ class Notation_controller: doc.recompute() expr = doc.music - print 'subexp', self.start_moment, self.stop_moment def sub(x): ok = (x.start >= self.start_moment and @@ -98,12 +97,10 @@ class Notation_controller: str = expr.lisp_sub_expression (sub) str = set_measure_number (str, int (self.start_moment) + 1) - print str str = talk_to_lilypond (str) self.parse_socket_file (str) def ensure_visible (self, when): - print when self.start_moment = max (math.floor (when - 1.0), 0.0) self.stop_moment = self.start_moment + 3.0 @@ -220,10 +217,8 @@ class Notation_item: print 'no such key', self.tag return citem - class Notation: - """A complete line/system/page of LilyPond output. Consists of a number of Notation_items"""