|
From: Sandro D. <he...@gm...> - 2007-09-20 02:07:25
|
I've read all the documentation searching for this, and sure, I find on the item 15.1 this: 1. The only valid divider is '='. 2. ';' is no longer valid for comments, and no multiline comments. My problem is, I need my program to read and write on a ini format that uses ':' as divider and ';' as comment mark. So I want to know if the ConfigObj has no method to set those variables like: from configobj import ConfigObj config = ConfigObj() # Setting the divider and comment mark (example) config.divider = ":" config.comment = ";" If doesn't have it, please, how I can modify it? 'cause I really need to change it. |