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 mark.dickinson
Recipients ezio.melotti, l0nwlf, mark.dickinson, ned.deily, vstinner
Date 2010-04-03.22:13:59
SpamBayes Score 2.9052927e-11
Marked as misclassified No
Message-id <1270332841.42.0.704748949397.issue8307@psf.upfronthosting.co.za>
In-reply-to
Content
After some more digging, it looks as though this is due to the Tkinter import (that ends up happening as a result of test___all__) changing the locale(?), and in particular the meaning of isalpha:

Python 2.7a4+ (trunk:79716, Apr  3 2010, 22:06:18) 
[GCC 4.2.1 (Apple Inc. build 5646) (dot 1)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> str.isalpha(chr(255))
False
[34999 refs]
>>> import Tkinter
[51283 refs]
>>> str.isalpha(chr(255))
True
[51283 refs]


(Is there some way that I can see the locale change more explicitly from Python?)
History
Date User Action Args
2010-04-03 22:14:01mark.dickinsonsetrecipients: + mark.dickinson, vstinner, ned.deily, ezio.melotti, l0nwlf
2010-04-03 22:14:01mark.dickinsonsetmessageid: <1270332841.42.0.704748949397.issue8307@psf.upfronthosting.co.za>
2010-04-03 22:14:00mark.dickinsonlinkissue8307 messages
2010-04-03 22:13:59mark.dickinsoncreate