New in version 2.0.
Make repeated notes from time_signature:
abjad> notetools.make_repeated_notes_from_time_signature((5, 32))
[Note("c'32"), Note("c'32"), Note("c'32"), Note("c'32"), Note("c'32")]
Make repeated notes with pitch from time_signature:
abjad> notetools.make_repeated_notes_from_time_signature((5, 32), pitch = "d''")
[Note("d''32"), Note("d''32"), Note("d''32"), Note("d''32"), Note("d''32")]
Return list of notes.