]> git.donarmstrong.com Git - lilypond.git/blobdiff - python/musicxml.py
Document info out=www target in make help.
[lilypond.git] / python / musicxml.py
index cb8e1957cb2f500ff7b5219529e4295d189d6e4c..63296f193e0bfc484f118017713e8a2c369295ea 100644 (file)
@@ -442,7 +442,7 @@ class Musicxml_voice:
 class Part (Music_xml_node):
     def __init__ (self):
         Music_xml_node.__init__ (self)
-       self._voices = []
+       self._voices = {}
         self._staff_attributes_dict = {}
 
     def get_part_list (self):
@@ -688,6 +688,8 @@ class Part (Music_xml_node):
 
     def get_voices (self):
        return self._voices
+    def get_staff_attributes (self):
+        return self._staff_attributes_dict
 
 class Notations (Music_xml_node):
     def get_tie (self):
@@ -698,8 +700,8 @@ class Notations (Music_xml_node):
        else:
            return None
 
-    def get_tuplet (self):
-       return self.get_maybe_exist_typed_child (Tuplet)
+    def get_tuplets (self):
+       return self.get_typed_children (Tuplet)
 
 class Time_modification(Music_xml_node):
     def get_fraction (self):