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 ZooKeeper
Recipients ZooKeeper
Date 2008-11-13.14:39:36
SpamBayes Score 0.00010447819
Marked as misclassified No
Message-id <1226587178.29.0.702800191925.issue4314@psf.upfronthosting.co.za>
In-reply-to
Content
This may be a little tricky to recreate but here it is:

q = u'абвгде'
q.isalpha()
True

foo = u'ч'
foo.isalpha()
False

So the Russian character u'ч' and u'ё' as well as a bunch of others is
not recognized by isalpha as a alphabetic character, which it is a
matter of fact.
This applies to both capital and regular versions of the letters.

http://en.wikipedia.org/wiki/%D0%81
http://en.wikipedia.org/wiki/Che_(Cyrillic)

Using: Python 2.5 (r25:51908, Sep 19 2006, 09:52:17) [MSC v.1310 32 bit
(Intel)] on win32
History
Date User Action Args
2008-11-13 14:39:38ZooKeepersetrecipients: + ZooKeeper
2008-11-13 14:39:38ZooKeepersetmessageid: <1226587178.29.0.702800191925.issue4314@psf.upfronthosting.co.za>
2008-11-13 14:39:37ZooKeeperlinkissue4314 messages
2008-11-13 14:39:36ZooKeepercreate