From 8fb01a55c0fcdc85f6835e5ccfccb5627631453c Mon Sep 17 00:00:00 2001 From: duplo Date: Fri, 23 Jan 2009 09:06:01 +0000 Subject: [PATCH] Add comment git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2212 38d2e660-2303-0410-9eaa-f027e97ec537 --- wizard/bertos_utils.py | 6 ++++++ 1 file changed, 6 insertions(+) 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)) -- 2.25.1