Is there any equivalent to str.split in Python that also returns the delimiters?
I need to preserve the whitespace layout for my output after processing some of the tokens.
Example:
>>> s="\tthis is an example"
>>> print s.split()
['this', 'is', 'an', 'example']
>>> print what_I_want(s)
['\t', 'this', ' ', 'is', ' ', 'an', ' ', 'example']
Thanks!

splitlinesseems to have akeependsparameter, but no such thing forsplit. Seems odd (docs.python.org/library/stdtypes.html#str.splitlines). – Dominic Rodger Nov 30 '09 at 15:06