Closed jpb closed 6 years ago
Previously, split would turn a,b,c, into ['a','b','c','']. This PR ensures there is no additional element if there is a trailing delimiter.
a,b,c,
['a','b','c','']
Previously, split would turn
a,b,c,
into['a','b','c','']
. This PR ensures there is no additional element if there is a trailing delimiter.