示例#1
0
文件: Context.py 项目: ajyoon/abjad
 def _copy_with_indicators_but_without_children_or_spanners(self):
     new = Container._copy_with_indicators_but_without_children_or_spanners(self)
     new._consists_commands = copy.copy(self.consists_commands)
     new._remove_commands = copy.copy(self.remove_commands)
     new.context_name = copy.copy(self.context_name)
     new.name = copy.copy(self.name)
     new.is_nonsemantic = copy.copy(self.is_nonsemantic)
     return new
示例#2
0
 def _copy_with_indicators_but_without_children_or_spanners(self):
     new = Container._copy_with_indicators_but_without_children_or_spanners(
         self)
     new._consists_commands = copy.copy(self.consists_commands)
     new._remove_commands = copy.copy(self.remove_commands)
     new.context_name = copy.copy(self.context_name)
     new.name = copy.copy(self.name)
     new.is_nonsemantic = copy.copy(self.is_nonsemantic)
     return new
示例#3
0
 def _copy_with_indicators_but_without_children_or_spanners(self):
     new = Container._copy_with_indicators_but_without_children_or_spanners(self)
     new.kind = self.kind
     return new
示例#4
0
 def _copy_with_indicators_but_without_children_or_spanners(self):
     new = Container._copy_with_indicators_but_without_children_or_spanners(
         self)
     new.kind = self.kind
     return new