Hackfut Security File Manager
Current Path:
/opt/alt/python27/lib64/python2.7/site-packages/numpy/tests
opt
/
alt
/
python27
/
lib64
/
python2.7
/
site-packages
/
numpy
/
tests
/
📁
..
📄
test_ctypeslib.py
(4 KB)
📄
test_ctypeslib.pyc
(4.91 KB)
📄
test_ctypeslib.pyo
(4.91 KB)
📄
test_matlib.py
(1.58 KB)
📄
test_matlib.pyc
(3.06 KB)
📄
test_matlib.pyo
(3.06 KB)
📄
test_numpy_version.py
(717 B)
📄
test_numpy_version.pyc
(986 B)
📄
test_numpy_version.pyo
(986 B)
📄
test_reloading.py
(1.01 KB)
📄
test_reloading.pyc
(1.19 KB)
📄
test_reloading.pyo
(1.19 KB)
📄
test_scripts.py
(3.28 KB)
📄
test_scripts.pyc
(3.36 KB)
📄
test_scripts.pyo
(3.36 KB)
Editing: test_numpy_version.py
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()
Upload File
Create Folder