From 3d3ef36e977b5f5a4153b8df6447f3f73e4726e3 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Mon, 4 May 2015 16:35:40 +0300 Subject: modstruct: Rename module to "ustruct", to allow full Python-level impl. --- tests/float/float_struct.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tests/float/float_struct.py') diff --git a/tests/float/float_struct.py b/tests/float/float_struct.py index 8ad0e492c6..e55890a2cd 100644 --- a/tests/float/float_struct.py +++ b/tests/float/float_struct.py @@ -1,6 +1,9 @@ # test struct package with floats -import struct +try: + import ustruct as struct +except: + import struct i = 1. + 1/2 # TODO: it looks like '=' format modifier is not yet supported -- cgit v1.2.3