This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients docs@python, hcoin, rhettinger, serhiy.storchaka
Date 2019-07-19.18:34:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1563561296.43.0.155310350105.issue37620@roundup.psfhosted.org>
In-reply-to
Content
An alternative is to use regular expressions. 

>>> re.split('[\t ]+', 'ab\t cd ef')
['ab', 'cd', 'ef']
.
History
Date User Action Args
2019-07-19 18:34:56serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger, docs@python, hcoin
2019-07-19 18:34:56serhiy.storchakasetmessageid: <1563561296.43.0.155310350105.issue37620@roundup.psfhosted.org>
2019-07-19 18:34:56serhiy.storchakalinkissue37620 messages
2019-07-19 18:34:56serhiy.storchakacreate