basically working descriptors!

This commit is contained in:
David Halter
2012-06-22 00:05:11 +02:00
parent d88283b879
commit 4332495a11
2 changed files with 21 additions and 16 deletions

View File

@@ -187,10 +187,10 @@ class B():
def r(self, value):
pass
#? []
B().r.
#? []
B().r()
#? int()
B().r
class Decorator(object):
def __init__(self, func):