Am surprised there's 3 different forms: RawConfigParser
, SafeConfigParser
and ConfigParser
(docs). I read the differences but why isn't everyone using SafeConfigParser
, since it seems, well, safe? I can understand that in the case for Python 2 that the other two were kept for backward compatibility.
UPDATE: In Python 3.2, SafeConfigParser has been renamed to ConfigParser, and the old ConfigParser has been removed (source: NEWS for Python 3.2).