[Python-Dev] ConfigParser mangles keys with special chars
Fred Drake
fred at fdrake.net
Fri Apr 25 21:58:26 CEST 2014
More information about the Python-Dev mailing list
Fri Apr 25 21:58:26 CEST 2014
- Previous message: [Python-Dev] ConfigParser mangles keys with special chars
- Next message: [Python-Dev] ConfigParser mangles keys with special chars
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Fri, Apr 25, 2014 at 3:12 PM, Ethan Furman <ethan at stoneleaf.us> wrote: > Perhaps an enhancement request then: a way to provide a regex that keys > must match, with an exception raised when a key doesn't. That way the > safety belt could be used when desired. You can subclass the parser class you're using and override the ``optionxform`` method to perform the checks you want for option names. I don't know if current versions provide a similar hook to validate section names; providing *that* would be an excellent enhancement. -Fred -- Fred L. Drake, Jr. <fred at fdrake.net> "A storm broke loose in my mind." --Albert Einstein
- Previous message: [Python-Dev] ConfigParser mangles keys with special chars
- Next message: [Python-Dev] ConfigParser mangles keys with special chars
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-Dev mailing list