Skip to content

Commit

Permalink
Fixed #1203 -- Fixed two typos in cache.py. Thanks, Eugene
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1922 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Jan 12, 2006
1 parent 353d7e3 commit 51a699d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django/core/cache.py
Expand Up @@ -29,7 +29,7 @@
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
Expand Down Expand Up @@ -350,7 +350,7 @@ def set(self, key, value, timeout=None):
pickle.dump(now + timeout, f, 2)
pickle.dump(value, f, 2)
except (IOError, OSError):
raise
pass

def delete(self, key):
try:
Expand Down

0 comments on commit 51a699d

Please sign in to comment.