summaryrefslogtreecommitdiff
path: root/django/core
diff options
context:
space:
mode:
authorGary Wilson Jr <gary.wilson@gmail.com>2007-07-15 06:29:45 +0000
committerGary Wilson Jr <gary.wilson@gmail.com>2007-07-15 06:29:45 +0000
commita41c03345e0ff0975b4e12e3ff41eef280a4fa1e (patch)
treee9ff048a873a1ee3536889bb31c0f86ce8adcd7c /django/core
parentae7f04caab1b4f2a2b509b036499e4e042caaac6 (diff)
Changed imports to adhere to PEP 8.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5704 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/core')
-rw-r--r--django/core/cache/backends/locmem.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/django/core/cache/backends/locmem.py b/django/core/cache/backends/locmem.py
index 468d1e629b..4c48c571b7 100644
--- a/django/core/cache/backends/locmem.py
+++ b/django/core/cache/backends/locmem.py
@@ -1,13 +1,14 @@
"Thread-safe in-memory cache backend."
-from django.core.cache.backends.simple import CacheClass as SimpleCacheClass
-from django.utils.synch import RWLock
import time
try:
import cPickle as pickle
except ImportError:
import pickle
+from django.core.cache.backends.simple import CacheClass as SimpleCacheClass
+from django.utils.synch import RWLock
+
class CacheClass(SimpleCacheClass):
def __init__(self, host, params):
SimpleCacheClass.__init__(self, host, params)