diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-05-04 16:35:40 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-05-04 16:53:52 +0300 |
commit | 3d3ef36e977b5f5a4153b8df6447f3f73e4726e3 (patch) | |
tree | 38fc98e386b6d2e2d67e487e1dbf8dd8011a516f /tests/float/float2int.py | |
parent | 1829d86ef5f4abf172f0cf34abba8113aa538f76 (diff) | |
download | micropython-3d3ef36e977b5f5a4153b8df6447f3f73e4726e3.tar.gz micropython-3d3ef36e977b5f5a4153b8df6447f3f73e4726e3.zip |
modstruct: Rename module to "ustruct", to allow full Python-level impl.
Diffstat (limited to 'tests/float/float2int.py')
-rw-r--r-- | tests/float/float2int.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/float/float2int.py b/tests/float/float2int.py index ca395997c4..e9bdf15de6 100644 --- a/tests/float/float2int.py +++ b/tests/float/float2int.py @@ -1,6 +1,9 @@ # check cases converting float to int, relying only on single precision float -import struct +try: + import ustruct as struct +except: + import struct # work out configuration values is_64bit = struct.calcsize("P") == 8 |