Example #1
0
File: Leaf.py Project: ajyoon/abjad
 def _copy_with_indicators_but_without_children_or_spanners(self):
     new = Component._copy_with_indicators_but_without_children_or_spanners(self)
     for grace_container in self._get_grace_containers():
         new_grace_container = \
             grace_container._copy_with_children_and_indicators_but_without_spanners()
         attach(new_grace_container, new)
     return new
Example #2
0
 def _copy_with_indicators_but_without_children_or_spanners(self):
     new = Component._copy_with_indicators_but_without_children_or_spanners(self)
     for grace_container in self._get_grace_containers():
         new_grace_container = \
             grace_container._copy_with_children_and_indicators_but_without_spanners()
         attach(new_grace_container, new)
     return new
Example #3
0
 def _copy_with_indicators_but_without_children_or_spanners(self):
     new = Component._copy_with_indicators_but_without_children_or_spanners(
         self)
     new.is_simultaneous = self.is_simultaneous
     return new
Example #4
0
 def _copy_with_indicators_but_without_children_or_spanners(self):
     new = Component._copy_with_indicators_but_without_children_or_spanners(
         self)
     new.is_simultaneous = self.is_simultaneous
     return new