(self)
| 452 | self.name = "{0} melodic minor".format(self.tonic) |
| 453 | |
| 454 | def ascending(self): |
| 455 | notes = NaturalMinor(self.tonic).ascending()[:-1] |
| 456 | notes[5] = augment(notes[5]) |
| 457 | notes[6] = augment(notes[6]) |
| 458 | return notes * self.octaves + [notes[0]] |
| 459 | |
| 460 | def descending(self): |
| 461 | notes = NaturalMinor(self.tonic).descending()[:-1] |
nothing calls this directly
no test coverage detected