On Fri, Sep 5, 2008 at 12:36 PM, Fredrik Lundh <[EMAIL PROTECTED]>wrote:
> Maric Michaud wrote: > > I suspect you are coming to conclusions a bit quickly, without taking the >> pain of understanding the whole discussion. >> > > I'm pretty sure I was the first one to post an answer in this thread, and I > understand Python design and performance issues very well, thank you. > > (but given your talk about "the cost of whitespace" in a response to a > comment about performance in that other subthread, it's obvious that you're > just here to provide noise. plonk plonk.) Thanks to the helpfulness of the python community, I've made a decision on how I wish to solve this problem. I decided to go ahead and pre-format my dictionary's keys to lowercase, and leave the values untouched (Case-retained). This way, any comparisons I perform will always be on lowercase (case insensitive) keys. All I have to do is call lower() on the value I'll be comparing against the keys. Thanks to everyone that helped. Apologies for the flame war that started!
-- http://mail.python.org/mailman/listinfo/python-list