/opt/alt/python27/lib64/python2.7/site-packages/numpy/tests
NameSizeModeActions
test_ctypeslib.py40970644editdlrm
test_ctypeslib.pyc50230644editdlrm
test_ctypeslib.pyo50230644editdlrm
test_matlib.py16220644editdlrm
test_matlib.pyc31300644editdlrm
test_matlib.pyo31300644editdlrm
test_numpy_version.py7170644editdlrm
test_numpy_version.pyc9860644editdlrm
test_numpy_version.pyo9860644editdlrm
test_reloading.py10380644editdlrm
test_reloading.pyc12210644editdlrm
test_reloading.pyo12210644editdlrm
test_scripts.py33620644editdlrm
test_scripts.pyc34420644editdlrm
test_scripts.pyo34420644editdlrm
Edit: /opt/alt/python27/lib64/python2.7/site-packages/numpy/tests/test_numpy_version.py (717B)
from __future__ import division, absolute_import, print_function import re import numpy as np from numpy.testing import assert_, run_module_suite def test_valid_numpy_version(): # Verify that the numpy version is a valid one (no .post suffix or other # nonsense). See gh-6431 for an issue caused by an invalid version. version_pattern = r"^[0-9]+\.[0-9]+\.[0-9]+(|a[0-9]|b[0-9]|rc[0-9])" dev_suffix = r"(\.dev0\+([0-9a-f]{7}|Unknown))" if np.version.release: res = re.match(version_pattern, np.__version__) else: res = re.match(version_pattern + dev_suffix, np.__version__) assert_(res is not None, np.__version__) if __name__ == "__main__": run_module_suite()