Create, save, and load the per-user config file at path().
Default filesystem encoding.
Initialized with libbe.util.encoding.get_filesystem_encoding().
Get a value from the per-user config file
Parameters : | name : str
section : str
default : :
encoding : str
|
---|
Examples
>>> get_val("junk") is None
True
>>> set_val("junk", "random")
>>> get_val("junk")
u'random'
>>> set_val("junk", None)
>>> get_val("junk") is None
True
Return the path to the per-user config file.
Defaults to ~/.bugs_everywhere.
Set a value in the per-user config file.
Parameters : | name : str
value : str or None
section : str
encoding : str
|
---|