summaryrefslogtreecommitdiff
path: root/decorators.py
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2009-07-22 00:32:42 +0200
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2009-07-22 00:32:42 +0200
commitde13e5a0580bc1ef185f78a49ff4f327bfa83279 (patch)
tree78969bcee18fc45824815e49c0edc6d250d2e67e /decorators.py
parent939217200979a6a2ee0f0ff22c33615b7172b08d (diff)
downloadlogilab-common-de13e5a0580bc1ef185f78a49ff4f327bfa83279.tar.gz
docstring
Diffstat (limited to 'decorators.py')
-rw-r--r--decorators.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/decorators.py b/decorators.py
index 1eafb47..d7768a0 100644
--- a/decorators.py
+++ b/decorators.py
@@ -99,6 +99,8 @@ class wproperty(object):
class classproperty(object):
+ """this is a simple property-like class but for class attributes.
+ """
def __init__(self, get):
self.get = get
def __get__(self, inst, cls):