[issue10567] Unicode space character \u200b unrecognised a space

Martin v. Löwis report at bugs.python.org
Sun Nov 28 19:40:40 CET 2010


Martin v. Löwis <martin at v.loewis.de> added the comment:

In 2.6, there was a manually maintained list, probably dating back to before Unicode 4.0. Python uses the following criterion for determining white space characters:

/* Returns 1 for Unicode characters having the bidirectional type
   'WS', 'B' or 'S' or the category 'Zs', 0 otherwise. */

Since r75272, this is generated from the current Unicode database, and should thus be always correct.

Unless you can somehow prove that the criterion should be changed, or that Python computes it incorrectly, I'm closing this report as invalid.

----------
nosy: +loewis
status: pending -> closed

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue10567>
_______________________________________


More information about the Python-bugs-list mailing list