Changeset 6800
- Timestamp:
- 12/01/07 13:22:05 (1 year ago)
- Files:
-
- django/trunk/django/utils/datastructures.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/utils/datastructures.py
r6751 r6800 1 1 class MergeDict(object): 2 2 """ 3 A simple class for creating new "virtual" dictionaries that actual y look3 A simple class for creating new "virtual" dictionaries that actually look 4 4 up values in more than one dictionary, passed in the constructor. 5 5 """ … … 216 216 def get(self, key, default=None): 217 217 """ 218 Returns the last data value for the passed key. If key doesn't exist218 Returns the last data value for the passed key. If key doesn't exist 219 219 or value is an empty list, then default is returned. 220 220 """ … … 229 229 def getlist(self, key): 230 230 """ 231 Returns the list of values for the passed key. If key doesn't exist,231 Returns the list of values for the passed key. If key doesn't exist, 232 232 then an empty list is returned. 233 233 """
