diff options
Diffstat (limited to 'Lib/test/test_binop.py')
-rw-r--r-- | Lib/test/test_binop.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_binop.py b/Lib/test/test_binop.py index 7eded9a..c64e3a8 100644 --- a/Lib/test/test_binop.py +++ b/Lib/test/test_binop.py @@ -48,12 +48,12 @@ class Rat(object): def _get_num(self): """Accessor function for read-only 'num' attribute of Rat.""" return self.__num - num = getset(_get_num, None) + num = property(_get_num, None) def _get_den(self): """Accessor function for read-only 'den' attribute of Rat.""" return self.__den - den = getset(_get_den, None) + den = property(_get_den, None) def __repr__(self): """Convert a Rat to an string resembling a Rat constructor call.""" |