app/soc/logic/dicts.py
changeset 499 d22e4fe8e64b
parent 486 ec6b50f48d3b
child 719 2e635755713a
--- a/app/soc/logic/dicts.py	Mon Nov 17 10:34:21 2008 +0000
+++ b/app/soc/logic/dicts.py	Mon Nov 17 10:36:35 2008 +0000
@@ -14,7 +14,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-"""Logic related to handling dictionaries
+"""Logic related to handling dictionaries.
 """
 
 __authors__ = [
@@ -31,7 +31,8 @@
     keys: The list with keys to filter the dictionary on
   
   Returns:
-    A dictionary that only contains the (key,value) from target that have their key in keys
+    A dictionary that only contains the (key,value) from target that 
+    have their key in keys.
   """
   result = {}
   
@@ -50,7 +51,7 @@
     updates: A dictionary containing new values for the original dict
 
   Returns:
-    the target dict, with any missing values from updates merged in, in-place 
+    the target dict, with any missing values from updates merged in, in-place.
   """
 
   if not target:
@@ -89,7 +90,7 @@
   return result
 
 def rename(target, keys):
-  """Returns a dict containing only the key/value pairs from keys
+  """Returns a dict containing only the key/value pairs from keys.
 
   The keys from target will be looked up in keys, and the corresponding
   value from keys will be used instead. If a key is not found, it is skipped.