Could anyone find a problem with this @property decorator? I cannot seem to get it to assert correctly. I\'m sure I\'m doing some really simple thing wrong, but can anyone p
The @property decorator only works on new style classes. Inherit from object:
@property
object
class A(object):
With that change your test function passes.