Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
- If the stale result could have spread to other users/devs, increment the music21
patch/beta version (see "PRs and Issues" below) — bumping the version invalidates all
caches everywhere.
- Doctests are not normally the place to demonstrate bug fixes - nor do simple bug fixes get a "Changed in vXX" message. Doctests demonstrate usage for the future. Unittests are for regression testing.

# Setup

Expand Down
2 changes: 1 addition & 1 deletion music21/articulations.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
# ------------------------------------------------------------------------------
class Articulation(base.Music21Object):
'''
Base class for all Articulation sub-classes.
Base class for all Articulation subclasses.

>>> x = articulations.Articulation()
>>> x.placement = 'below'
Expand Down
2 changes: 1 addition & 1 deletion music21/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -3620,7 +3620,7 @@ def _getMeasureOffset(self, includeMeasurePadding: bool = True) -> OffsetQL:
'''
from music21 import stream

# TODO: v8 -- expose as public.
# TODO: expose as public.
activeS = self.activeSite
if activeS is not None and isinstance(activeS, stream.Measure):
# environLocal.printDebug(['found activeSite as Measure, using for offset'])
Expand Down
Loading
Loading