MCPcopy Create free account
hub / github.com/bspaans/python-mingus / augmented_major_seventh

Function augmented_major_seventh

mingus/core/chords.py:519–526  ·  view source on GitHub ↗

Build an augmented major seventh chord on note. Example: >>> augmented_major_seventh('C') ['C', 'E', 'G#', 'B']

(note)

Source from the content-addressed store, hash-verified

517
518
519def augmented_major_seventh(note):
520 """Build an augmented major seventh chord on note.
521
522 Example:
523 >>> augmented_major_seventh('C')
524 ['C', 'E', 'G#', 'B']
525 """
526 return augmented_triad(note) + [intervals.major_seventh(note)]
527
528
529def augmented_minor_seventh(note):

Callers

nothing calls this directly

Calls 1

augmented_triadFunction · 0.85

Tested by

no test coverage detected