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

Function dominant_sixth

mingus/core/chords.py:345–352  ·  view source on GitHub ↗

Build the altered chord 6/7 on note. Example: >>> dominant_sixth('C') ['C', 'E', 'G', 'A', 'Bb']

(note)

Source from the content-addressed store, hash-verified

343
344
345def dominant_sixth(note):
346 """Build the altered chord 6/7 on note.
347
348 Example:
349 >>> dominant_sixth('C')
350 ['C', 'E', 'G', 'A', 'Bb']
351 """
352 return major_sixth(note) + [intervals.minor_seventh(note)]
353
354
355def sixth_ninth(note):

Callers

nothing calls this directly

Calls 1

major_sixthFunction · 0.70

Tested by

no test coverage detected