Update Pattern stutter method
Added strict
keyword argument for Pattern.stutter
that takes a boolean input. If False (the default) then an instance of a Generator Pattern, e.g. PRand
is not added multiple times but recreated so that each value in the final Pattern is n
number of newly generated values. If True then it returns one value from the Generator Pattern n
times (old behaviour)