Mercurial > mozilla > hg > ProfileManager
comparison 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 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:7301d534bc6c |
---|---|
1 """ | |
2 objects + methods related to .ini objects | |
3 """ | |
4 | |
5 # XXX do this inline as opposed to using e.g. martINI for portability | |
6 # and ease of modification | |
7 | |
8 def dictionary(parser): | |
9 """ | |
10 obtain a nested dictionary from an .ini file | |
11 """ | |
12 | |
13 if __name__ == '__main__': | |
14 from pprint import pprint | |
15 |