Diff
Differences From Artifact [17163ecdcb]:
- File config.py — part of check-in [bc473dc5da] at 2014-05-15 19:45:31 on branch trunk — and conf.pyquery default, so it's not forgotten by config_dialog.save_config (user: mario, size: 7423) [annotate] [blame] [check-ins using]
To Artifact [f00713448d]:
- File config.py — part of check-in [9ad64ad53a] at 2014-05-25 11:57:08 on branch trunk — Use mygtk.ComboBoxText also for theme switcher button. Moved .vbox and .label creating into mygtk, ComboBoxText.set_default() now automatically adds non-predeclated/custom value at end of liststore. (user: mario, size: 7480) [annotate] [blame] [check-ins using]
18 19 20 21 22 23 24 25 26 27 28 29 30 31 | import os import sys import json import gzip import platform #-- create a single instance of config object conf = object() #-- global configuration data --------------------------------------------- | > > > | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | import os import sys import json import gzip import platform # export symbols __all__ = ["conf", "__print__", "dbg"] #-- create a single instance of config object conf = object() #-- global configuration data --------------------------------------------- |