fix range problem for complex<float>, found by szabi@mplayerhq.hu
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@5798 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
f3e6672d8c
commit
1907bc9a96
2 changed files with 7 additions and 4 deletions
|
|
@ -1,10 +1,13 @@
|
|||
import complextest
|
||||
|
||||
a = complex(1,2)
|
||||
a = complex(-1,2)
|
||||
|
||||
if complextest.Conj(a) != a.conjugate():
|
||||
raise RuntimeError, "bad complex mapping"
|
||||
|
||||
if complextest.Conjf(a) != a.conjugate():
|
||||
raise RuntimeError, "bad complex mapping"
|
||||
|
||||
|
||||
v = (complex(1,2), complex(2,3), complex(4,3), 1)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue