Beispiel #1
0
def augmented_triad(note):
    """Build an augmented triad on note.

    Example:
    >>> augmented_triad('C')
    ['C', 'E', 'G#']
    """
    return [note, intervals.major_third(note),
            notes.augment(intervals.major_fifth(note))]
def augmented_triad(note):
	"""Builds an augmented triad on note.
	Example:
{{{
>>> augmented_triad("C")
["C", "E", "G#"]
}}}"""
	return [note, intervals.major_third(note),\
					notes.augment(intervals.major_fifth(note))]
Beispiel #3
0
def augmented_triad(note):
    """Build an augmented triad on note.

    Example:
    >>> augmented_triad('C')
    ['C', 'E', 'G#']
    """
    return [note, intervals.major_third(note),
            notes.augment(intervals.major_fifth(note))]
Beispiel #4
0
def augmented_triad(note):
    """Builds an augmented triad on note.
    Example:
{{{
>>> augmented_triad(\"C\")
[\"C\", \"E\", \"G#\"]
}}}"""

    return [note, intervals.major_third(note),
            notes.augment(intervals.major_fifth(note))]
Beispiel #5
0
def augmented_triad(note):
    """Builds an augmented triad on note.
    Example:
{{{
>>> augmented_triad(\"C\")
[\"C\", \"E\", \"G#\"]
}}}"""

    return [
        note,
        intervals.major_third(note),
        notes.augment(intervals.major_fifth(note))
    ]