X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2Fbertos_utils.py;h=700d72e7ef65087eb0b826cbed6e0be2c47137da;hb=9f41d37cc8136d4a26e004a93ceb523e008f8486;hp=c338c2db3269922a5dc318cdc69e46938b95beb0;hpb=795f261e4228834bb46cc40cf287c66c16018688;p=bertos.git diff --git a/wizard/bertos_utils.py b/wizard/bertos_utils.py index c338c2db..700d72e7 100644 --- a/wizard/bertos_utils.py +++ b/wizard/bertos_utils.py @@ -234,6 +234,9 @@ def loadConfigurationInfos(path): raise DefineException.ConfigurationDefineException(path, name) def loadConfigurationInfosDict(project): + """ + Store in the project the configuration infos as a dict. + """ modules = project.info("MODULES") configurations = {} for module, informations in modules.items(): @@ -278,7 +281,7 @@ def loadModuleInfos(path): def loadModuleInfosDict(project): """ - Return the dict containig all the modules + Store in the project the dict containig all the modules """ moduleInfosDict = {} for filename, path in findDefinitions("*.h", project): @@ -305,7 +308,7 @@ def loadDefineLists(path): def loadDefineListsDict(project): """ - Return the dict containing all the define lists + Store in the project the dict containing all the define lists """ defineListsDict = {} for filename, path in findDefinitions("*.h", project):