From: Paul Brossier Date: Fri, 21 Jun 2019 12:03:49 +0000 (+0200) Subject: [py] add helper to check if we are on a 32bit system X-Git-Url: https://git.aubio.org/?p=aubio.git;a=commitdiff_plain;h=f912e909150f1e608c96af03d40d8cd4d8177b80 [py] add helper to check if we are on a 32bit system --- diff --git a/python/tests/utils.py b/python/tests/utils.py index 4b414883..76064042 100644 --- a/python/tests/utils.py +++ b/python/tests/utils.py @@ -3,11 +3,15 @@ import os import re import glob +import struct import numpy as np from tempfile import mkstemp DEFAULT_SOUND = '22050Hz_5s_brownnoise.wav' +def is32bit(): + return struct.calcsize("P") * 8 == 32 + def array_from_text_file(filename, dtype = 'float'): realpathname = os.path.join(os.path.dirname(__file__), filename) return np.loadtxt(realpathname, dtype = dtype)