Author: gwilson
Date: 2007-07-15 01:29:45 -0500 (Sun, 15 Jul 2007)
New Revision: 5704
Modified:
django/trunk/django/core/cache/backends/locmem.py
Log:
Changed imports to adhere to PEP 8.
Modified: django/trunk/django/core/cache/backends/locmem.py
===================================================================
--- django/trunk/django/core/cache/backends/locmem.py 2007-07-15 06:24:54 UTC
(rev 5703)
+++ django/trunk/django/core/cache/backends/locmem.py 2007-07-15 06:29:45 UTC
(rev 5704)
@@ -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)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---