diff --git a/test_extclass.py b/test_extclass.py index 3b107058..2df54925 100644 --- a/test_extclass.py +++ b/test_extclass.py @@ -275,6 +275,10 @@ Numeric tests: 1/6 >>> print x / y 8/3 + >>> print x + 1 # testing coercion + 5/3 + >>> print 1 + x # coercion the other way + 5/3 delete non-existent attribute: del m.foobar