Change comments
authorduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 10 Feb 2009 14:29:19 +0000 (14:29 +0000)
committerduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 10 Feb 2009 14:29:19 +0000 (14:29 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2341 38d2e660-2303-0410-9eaa-f027e97ec537

wizard/bertos_utils.py

index c338c2db3269922a5dc318cdc69e46938b95beb0..700d72e7ef65087eb0b826cbed6e0be2c47137da 100644 (file)
@@ -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):