Noah Slater wrote: > Hello, > > I have checked out the paste code in an effort to discover how config > INI files are parsed, but to no luck. Could someone please enlighten > me?
It just uses ConfigParser. > Also, would be it be possible to use an advanced config parser such as > configobj? > > http://www.voidspace.org.uk/python/configobj.html I'm not a big fan of ConfigObj; I don't like schemas in config files, and some of its features are too syntactically complex for me. I did write a config parser which is nicer than ConfigParser (INITools), but haven't gotten around to using it. It sticks to straight .ini syntax, but can support things like better variable substitution and better error messages. Ian _______________________________________________ Paste-users mailing list [email protected] http://webwareforpython.org/cgi-bin/mailman/listinfo/paste-users
