]> git.donarmstrong.com Git - lilypond.git/commitdiff
*** empty log message ***
authorhanwen <hanwen>
Thu, 14 Jul 2005 22:48:56 +0000 (22:48 +0000)
committerhanwen <hanwen>
Thu, 14 Jul 2005 22:48:56 +0000 (22:48 +0000)
music.py
notation.py

index 47c056f55c140ba4526fe9a47bfc5ce85e3e7366..e0c7477148bf082902e275e160ec7f8a74a5a84d 100644 (file)
--- 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)
index a335cec4ef3ba3325abee55de9958c117474bdd0..84b306247e6df9670ba4876884343fc30c16b73d 100644 (file)
@@ -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"""