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

Function dominant_sharp_ninth

mingus/core/chords.py:407–416  ·  view source on GitHub ↗

Build a dominant sharp ninth chord on note. Example: >>> dominant_sharp_ninth('C') ['C', 'E', 'G', 'Bb', 'D#']

(note)

Source from the content-addressed store, hash-verified

405
406
407def dominant_sharp_ninth(note):
408 """Build a dominant sharp ninth chord on note.
409
410 Example:
411 >>> dominant_sharp_ninth('C')
412 ['C', 'E', 'G', 'Bb', 'D#']
413 """
414 res = dominant_ninth(note)
415 res[4] = notes.augment(intervals.major_second(note))
416 return res
417
418
419def eleventh(note):

Callers

nothing calls this directly

Calls 2

dominant_ninthFunction · 0.85
augmentMethod · 0.45

Tested by

no test coverage detected