Message 47990 - Python tracker

Message47990

Author fidoman
Recipients
Date 2005-03-17.16:57:04
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
ConfigParser is module which parses commonly used 
INI files. It gets sections from file and values from 
sections. By now, it gets from file key and value divided 
by symbol ":" or "=".

For FTN application, a want to use FTN addresses as 
keys. FTN address looks like "2:5020/12000". So if I try 
to use it as key, ConfigParser considers "2" as key 
and "5020/12000 = ..." as value. 

I made patch, which allows to use any set of symbols 
(or '=' and ':' by default for compatibility) as delimitier 
between key and value in INI file.
History
Date User Action Args
2007-08-23 15:42:14adminlinkissue1165404 messages
2007-08-23 15:42:14admincreate