I just noticed the split method produces an empty string in the result list if the first character is a delimiter string.
Example:
>>> s = '/foo/bar/blarg'
>>> s.split('/')
['', 'foo', 'bar', 'blarg']
I expected this to produce:
['foo', 'bar', 'blarg']
Is there some reason why this is desirable behavior, or is this simply a bug?