[pypy-issue] [issue757] unicode.isspace() incorrect

Amaury Forgeot d Arc tracker at bugs.pypy.org
Sun Jun 19 17:00:31 CEST 2011


Amaury Forgeot d Arc <amauryfa at gmail.com> added the comment:

No, it's a difference between the unicode databases used by the different versions of 
Python: python 2.6 uses 5.1.0, python 2.7 (and pypy1.5) uses 5.2.0:

c:\python26\python.exe -c "print u'a\u200bb'.split()"
[u'a', u'b']

c:\python27\python.exe -c "print u'a\u200bb'.split()"
[u'a\u200bb']

----------
nosy: +afa

________________________________________
PyPy bug tracker <tracker at bugs.pypy.org>
<https://bugs.pypy.org/issue757>
________________________________________


More information about the pypy-issue mailing list