Mercurial > mozilla > hg > ProfileManager
diff profilemanager/config.py @ 0:7301d534bc6c
initial messy and incomplete strawman prototype for Mozilla (Firefox) profile management
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 04 Apr 2010 18:49:55 -0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/profilemanager/config.py Sun Apr 04 18:49:55 2010 -0400 @@ -0,0 +1,15 @@ +""" +objects + methods related to .ini objects +""" + +# XXX do this inline as opposed to using e.g. martINI for portability +# and ease of modification + +def dictionary(parser): + """ + obtain a nested dictionary from an .ini file + """ + +if __name__ == '__main__': + from pprint import pprint +