diff options
Diffstat (limited to 'tests/float/bytes_construct.py')
-rw-r--r-- | tests/float/bytes_construct.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/float/bytes_construct.py b/tests/float/bytes_construct.py index 96294659b..0806087b0 100644 --- a/tests/float/bytes_construct.py +++ b/tests/float/bytes_construct.py @@ -9,4 +9,4 @@ except ImportError: print("SKIP") raise SystemExit -print(bytes(array('f', [1, 2.3]))) +print(bytes(array("f", [1, 2.3]))) |