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 andrei.avk
Recipients Catherine.Devlin, Mark.Bell, Philippe Cloutier, ZackerySpytz, andrei.avk, barry, cheryl.sabella, corona10, gvanrossum, karlcow, mrabarnett, serhiy.storchaka, syeberman, veky
Date 2021-06-05.15:50:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1622908236.57.0.326761830641.issue28937@roundup.psfhosted.org>
In-reply-to
Content
To clarify with pseudocode, this is how it could work:

'' => []       # sep=None, keep_single_empty=False
'' => ['']     # sep=None, keep_single_empty=True
'' => []       # sep=',', keep_single_empty=False
'a,,' => ['a','','']        # sep=',', keep_single_empty=False

I guess `keepempty=False` could be too easily confused for filtering out all empties.
History
Date User Action Args
2021-06-05 15:50:36andrei.avksetrecipients: + andrei.avk, gvanrossum, barry, syeberman, mrabarnett, karlcow, serhiy.storchaka, Catherine.Devlin, Mark.Bell, veky, cheryl.sabella, corona10, ZackerySpytz, Philippe Cloutier
2021-06-05 15:50:36andrei.avksetmessageid: <1622908236.57.0.326761830641.issue28937@roundup.psfhosted.org>
2021-06-05 15:50:36andrei.avklinkissue28937 messages
2021-06-05 15:50:36andrei.avkcreate