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 vstinner
Recipients ezio.melotti, tburke, vstinner
Date 2018-06-27.00:42:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1530060126.57.0.56676864532.issue33973@psf.upfronthosting.co.za>
In-reply-to
Content
isspace() is also true for another non-ASCII character: U+0085 (b'\x85').

>>> ''.join(chr(i) for i in range(256) if chr(i).isspace())
'\t\n\x0b\x0c\r\x1c\x1d\x1e\x1f \x85\xa0'
History
Date User Action Args
2018-06-27 00:42:06vstinnersetrecipients: + vstinner, ezio.melotti, tburke
2018-06-27 00:42:06vstinnersetmessageid: <1530060126.57.0.56676864532.issue33973@psf.upfronthosting.co.za>
2018-06-27 00:42:06vstinnerlinkissue33973 messages
2018-06-27 00:42:06vstinnercreate