コード例 #1
0
ファイル: Context.py プロジェクト: Alwnikrotikz/abjad
 def _copy_with_marks_but_without_children_or_spanners(self):
     new = Container._copy_with_marks_but_without_children_or_spanners(self)
     new._engraver_consists = copy.copy(self.engraver_consists)
     new._engraver_removals = copy.copy(self.engraver_removals)
     new.name = copy.copy(self.name)
     new.is_nonsemantic = copy.copy(self.is_nonsemantic)
     return new
     return new
コード例 #2
0
ファイル: GraceContainer.py プロジェクト: Alwnikrotikz/abjad
 def _copy_with_marks_but_without_children_or_spanners(self):
     new = Container._copy_with_marks_but_without_children_or_spanners(self)
     new.kind = self.kind
     return new