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 Daniel.Andersson
Recipients Daniel.Andersson, docs@python, terry.reedy
Date 2014-04-20.15:47:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1398008877.48.0.789379045576.issue21297@psf.upfronthosting.co.za>
In-reply-to
Content
No, multiple spaces are ignored as advertised (according to actual tests; not just reading the code), but only spaces (U+0020) and not e.g. tabs (U+0009), which are also included in the term "whitespace", along with several other characters.

In light of your followup question, the internal comment at `Modules/_csv.c`, line 639:

    /* ignore space at start of field */

could perhaps be clarified to say "spaces" instead of "space", but the code context makes it quite clear, and it does not face the users anyway. The main point of this issue is meant to be the wording in the module docstring and the official docs regarding "whitespace" contra "space".
History
Date User Action Args
2014-04-20 15:47:57Daniel.Anderssonsetrecipients: + Daniel.Andersson, terry.reedy, docs@python
2014-04-20 15:47:57Daniel.Anderssonsetmessageid: <1398008877.48.0.789379045576.issue21297@psf.upfronthosting.co.za>
2014-04-20 15:47:57Daniel.Anderssonlinkissue21297 messages
2014-04-20 15:47:56Daniel.Anderssoncreate