From 2cbf7d725a66fc13596a4a1b18117edc108237fe Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Fri, 9 Oct 2020 18:34:32 +0100 Subject: [PATCH] Remove Remove runtime test for unsupported complex or _Complex by itself --- Examples/test-suite/python/complextest_runme.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Examples/test-suite/python/complextest_runme.py b/Examples/test-suite/python/complextest_runme.py index 4e7d08ffc..3eef2b2bc 100644 --- a/Examples/test-suite/python/complextest_runme.py +++ b/Examples/test-suite/python/complextest_runme.py @@ -22,14 +22,6 @@ if 'Conjf3' in dir(complextest): if complextest.Conjf3(a) != a.conjugate(): raise RuntimeError("bad complex mapping") -if 'Conj4' in dir(complextest): - if complextest.Conj4(a) != a.conjugate(): - raise RuntimeError("bad complex mapping") - -if 'Conj5' in dir(complextest): - if complextest.Conj5(a) != a.conjugate(): - raise RuntimeError("bad complex mapping") - if 'CopyHalf' in dir(complextest): v = (complex(1, 2), complex(2, 3), complex(4, 3), 1)