New in version 1.1.
Zip sequences nontruncating:
abjad> from abjad.tools import sequencetools
abjad> sequencetools.zip_sequences_without_truncation([1, 2, 3, 4], [11, 12, 13], [21, 22, 23])
[(1, 11, 21), (2, 12, 22), (3, 13, 23), (4,)]
Lengths of the tuples returned may differ but will always be greater than or equal to 1.
Return list of tuples.
Changed in version 2.0: renamed sequencetools.zip_nontruncating() to sequencetools.zip_sequences_without_truncation().