Django

Code

Changeset 6800

Show
Ignore:
Timestamp:
12/01/07 13:22:05 (1 year ago)
Author:
adrian
Message:

Edited docstring changes from [6714]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/utils/datastructures.py

    r6751 r6800  
    11class MergeDict(object): 
    22    """ 
    3     A simple class for creating new "virtual" dictionaries that actualy look 
     3    A simple class for creating new "virtual" dictionaries that actually look 
    44    up values in more than one dictionary, passed in the constructor. 
    55    """ 
     
    216216    def get(self, key, default=None): 
    217217        """ 
    218         Returns the last data value for the passed key. If key doesn't exist 
     218        Returns the last data value for the passed key. If key doesn't exist 
    219219        or value is an empty list, then default is returned. 
    220220        """ 
     
    229229    def getlist(self, key): 
    230230        """ 
    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, 
    232232        then an empty list is returned. 
    233233        """