Skip to content

Commit a41c033

Browse files
committed
Changed imports to adhere to PEP 8.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5704 bcc190cf-cafb-0310-a4f2-bffc1f526a37
1 parent ae7f04c commit a41c033

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

django/core/cache/backends/locmem.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
"Thread-safe in-memory cache backend."
22

3-
from django.core.cache.backends.simple import CacheClass as SimpleCacheClass
4-
from django.utils.synch import RWLock
53
import time
64
try:
75
import cPickle as pickle
86
except ImportError:
97
import pickle
108

9+
from django.core.cache.backends.simple import CacheClass as SimpleCacheClass
10+
from django.utils.synch import RWLock
11+
1112
class CacheClass(SimpleCacheClass):
1213
def __init__(self, host, params):
1314
SimpleCacheClass.__init__(self, host, params)

0 commit comments

Comments
 (0)