Kaydet (Commit) 51a699de authored tarafından Adrian Holovaty's avatar Adrian Holovaty

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

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1922 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 353d7e33
......@@ -29,7 +29,7 @@ The CACHE_BACKEND setting is a quasi-URI; examples are:
testing. Note that this cache backend is
NOT threadsafe!
locmem:/// A more sophisticaed local memory cache;
locmem:/// A more sophisticated local memory cache;
this is multi-process- and thread-safe.
dummy:/// Doesn't actually cache. For use in test
......@@ -350,7 +350,7 @@ class _FileCache(_SimpleCache):
pickle.dump(now + timeout, f, 2)
pickle.dump(value, f, 2)
except (IOError, OSError):
raise
pass
def delete(self, key):
try:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment