aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/utils
diff options
context:
space:
mode:
authorVladislav Poluhin2013-04-24 16:04:04 +0800
committerVladislav Poluhin2013-04-24 16:04:04 +0800
commit702f574461693efe0ea951254e2dcce7edb9a30f (patch)
tree9df762ed44e97073afae0c628393bd7f5830fa49 /debug_toolbar/utils
parent4c1c4f7a8873a80f843ba683240b9d0ff0f49e4b (diff)
downloaddjango-debug-toolbar-702f574461693efe0ea951254e2dcce7edb9a30f.tar.bz2
Fix tests for Django 1.3
Diffstat (limited to 'debug_toolbar/utils')
-rw-r--r--debug_toolbar/utils/functional.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/debug_toolbar/utils/functional.py b/debug_toolbar/utils/functional.py
new file mode 100644
index 0000000..1dbb734
--- /dev/null
+++ b/debug_toolbar/utils/functional.py
@@ -0,0 +1,14 @@
+try:
+ from django.utils.functional import cached_property
+except ImportError: # Django < 1.4
+ class cached_property(object):
+ """
+ Decorator that creates converts a method with a single
+ self argument into a property cached on the instance.
+ """
+ def __init__(self, func):
+ self.func = func
+
+ def __get__(self, instance, type):
+ res = instance.__dict__[self.func.__name__] = self.func(instance)
+ return res