[issue4314] isalpha bug

Marc-Andre Lemburg report at bugs.python.org
Thu Nov 13 15:49:54 CET 2008


Marc-Andre Lemburg <mal at egenix.com> added the comment:

... and for the other character:

>>> print u'\u0427'
Ч
>>> print u'\u0447'
ч
>>> print u'\u0427'.isalpha()
True
>>> print u'\u0447'.isalpha()
True

Looks fine.

----------
resolution:  -> works for me
status: open -> closed

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


More information about the Python-bugs-list mailing list