diff options
Diffstat (limited to 'tests/float/float2int_doubleprec.py')
-rw-r--r-- | tests/float/float2int_doubleprec.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/float/float2int_doubleprec.py b/tests/float/float2int_doubleprec.py index 63138c0d4e..acdc8c69c4 100644 --- a/tests/float/float2int_doubleprec.py +++ b/tests/float/float2int_doubleprec.py @@ -1,6 +1,9 @@ # check cases converting float to int, requiring double precision float -import struct +try: + import ustruct as struct +except: + import struct # work out configuration values is_64bit = struct.calcsize("P") == 8 |