From: duplo Date: Fri, 23 Jan 2009 09:06:01 +0000 (+0000) Subject: Add comment X-Git-Tag: 2.1.0~470 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=8fb01a55c0fcdc85f6835e5ccfccb5627631453c;p=bertos.git Add comment git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2212 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/wizard/bertos_utils.py b/wizard/bertos_utils.py index 479f88ee..bed5493b 100644 --- a/wizard/bertos_utils.py +++ b/wizard/bertos_utils.py @@ -171,6 +171,9 @@ def loadModuleInfos(path): return {} def loadModuleInfosDict(path): + """ + Return the dict containig all the modules + """ moduleInfosDict = {} for filename, path in findDefinitions("*.h", path): moduleInfosDict.update(loadModuleInfos(path + "/" + filename)) @@ -192,6 +195,9 @@ def loadDefineLists(path): return listDict def loadDefineListsDict(path): + """ + Return the dict containing all the define lists + """ defineListsDict = {} for filename, path in findDefinitions("*.h", path): defineListsDict.update(loadDefineLists(path + "/" + filename))