diff options
author | 2011-12-15 23:18:21 +0100 | |
---|---|---|
committer | 2011-12-15 23:18:21 +0100 | |
commit | 5499be89203a18ca61a21cfc7266cf0f4ebe6547 (patch) | |
tree | 55f3d207573920be3a6970dbc099d058f417c05f /module/ConfigParser.py | |
parent | Added tag v0.4.9 for changeset 1babca12c25f (diff) | |
download | pyload-5499be89203a18ca61a21cfc7266cf0f4ebe6547.tar.xz |
refractoring
Diffstat (limited to 'module/ConfigParser.py')
-rw-r--r-- | module/ConfigParser.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/module/ConfigParser.py b/module/ConfigParser.py index 78b612f13..85c58a0a3 100644 --- a/module/ConfigParser.py +++ b/module/ConfigParser.py @@ -16,6 +16,10 @@ IGNORE = ( CONF_VERSION = 1 +from namedtuple import namedtuple + +ConfigTuple = namedtuple("ConfigTuple", "TODO") #TODO + class ConfigParser: """ holds and manage the configuration |