From 7927a40ad7e1c8747155456cebf5d5af1c7ae04d Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 18 Oct 2000 04:21:57 +0000 Subject: [PATCH] Some more testing for numerics support [SVN r7987] --- test_extclass.py | 4 ++++ 1 file changed, 4 insertions(+) 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