Add comment
authorduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 23 Jan 2009 09:06:01 +0000 (09:06 +0000)
committerduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 23 Jan 2009 09:06:01 +0000 (09:06 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2212 38d2e660-2303-0410-9eaa-f027e97ec537

wizard/bertos_utils.py

index 479f88eea08cd3727f86cb3afcb29038cdb491ec..bed5493b499ac60984ed3d73205e36e14fe1c685 100644 (file)
@@ -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))