Django

Code

Changeset 1922

Show
Ignore:
Timestamp:
01/11/06 20:35:14 (3 years ago)
Author:
adrian
Message:

Fixed #1203 -- Fixed two typos in cache.py. Thanks, Eugene

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/core/cache.py

    r1815 r1922  
    3030                                    NOT threadsafe! 
    3131 
    32     locmem:///                      A more sophisticaed local memory cache; 
     32    locmem:///                      A more sophisticated local memory cache; 
    3333                                    this is multi-process- and thread-safe. 
    3434 
     
    351351            pickle.dump(value, f, 2) 
    352352        except (IOError, OSError): 
    353             raise 
     353            pass 
    354354 
    355355    def delete(self, key):