mirror of
https://github.com/Hopiu/django-cachalot.git
synced 2026-05-09 21:24:44 +00:00
Removes 2 debug methods.
This commit is contained in:
parent
323d9308e3
commit
e5d003c8e4
2 changed files with 0 additions and 8 deletions
|
|
@ -153,11 +153,6 @@ class AtomicCache(dict):
|
|||
self.parent_cache.set_many(self)
|
||||
self.parent_cache.delete_many(self.to_be_deleted)
|
||||
|
||||
def __repr__(self):
|
||||
return '<AtomicCache (cache=%s, to_be_deleted=%s)>' % (
|
||||
super(AtomicCache, self).__repr__(),
|
||||
self.to_be_deleted)
|
||||
|
||||
|
||||
def get_cache():
|
||||
cache_name = cachalot_settings.CACHALOT_CACHE
|
||||
|
|
|
|||
|
|
@ -27,9 +27,6 @@ class Test(Model):
|
|||
class Meta(object):
|
||||
ordering = ('name',)
|
||||
|
||||
def __str__(self):
|
||||
return self.name
|
||||
|
||||
|
||||
class ReadTestCase(TestCase):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Reference in a new issue