We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae7f04c commit a41c033Copy full SHA for a41c033
django/core/cache/backends/locmem.py
@@ -1,13 +1,14 @@
1
"Thread-safe in-memory cache backend."
2
3
-from django.core.cache.backends.simple import CacheClass as SimpleCacheClass
4
-from django.utils.synch import RWLock
5
import time
6
try:
7
import cPickle as pickle
8
except ImportError:
9
import pickle
10
+from django.core.cache.backends.simple import CacheClass as SimpleCacheClass
+from django.utils.synch import RWLock
11
+
12
class CacheClass(SimpleCacheClass):
13
def __init__(self, host, params):
14
SimpleCacheClass.__init__(self, host, params)
0 commit comments