why does Configparser change names to lowercase ?

Joshua J. Kugler joshua at eeinternet.com
Mon Sep 17 18:13:32 EDT 2007


On Friday 14 September 2007 12:21, stef mientki wrote:
> Why does  Configparser change names to lowercase ?
> 
> As Python is case sensitive (which btw I don't like at all ;-)
> but now when really need the casesensitivity,
> because it handles about names which should be recognized by human,
> it changes everything to lowercase ????
> 
> thanks,
> Stef Mientki

According to the ConfigParser docs:

"All option names used in interpolation will be passed through the
optionxform() method just like any other option name reference. For
example, using the default implementation of optionxform() (which converts
option names to lower case), the values "foo %(bar)s" and "foo %(BAR)s" are
equivalent."

So, it seems it would be trivial so sublcass ConfigParser, and reimplement
optionxform()

Hope that helps.

j

-- 
Joshua Kugler
Lead System Admin -- Senior Programmer
http://www.eeinternet.com
PGP Key: http://pgp.mit.edu/  ID 0xDB26D7CE




More information about the Python-list mailing list