Change comments
[bertos.git] / 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):