OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
numpy
/
tests
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 08:45:52 AM
rwxr-xr-x
📁
__pycache__
-
10/28/2024 08:45:53 AM
rwxr-xr-x
📄
test_ctypeslib.py
4.42 KB
12/05/2017 02:32:02 PM
rw-r--r--
📄
test_matlib.py
1.58 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
test_numpy_version.py
717 bytes
09/17/2017 01:29:38 PM
rw-r--r--
📄
test_reloading.py
1.01 KB
09/17/2017 01:29:38 PM
rw-r--r--
📄
test_scripts.py
3.01 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
test_warnings.py
2.66 KB
09/29/2017 05:31:46 PM
rw-r--r--
Editing: test_reloading.py
Close
from __future__ import division, absolute_import, print_function import sys from numpy.testing import assert_raises, assert_, run_module_suite if sys.version_info[:2] >= (3, 4): from importlib import reload else: from imp import reload def test_numpy_reloading(): # gh-7844. Also check that relevant globals retain their identity. import numpy as np import numpy._globals _NoValue = np._NoValue VisibleDeprecationWarning = np.VisibleDeprecationWarning ModuleDeprecationWarning = np.ModuleDeprecationWarning reload(np) assert_(_NoValue is np._NoValue) assert_(ModuleDeprecationWarning is np.ModuleDeprecationWarning) assert_(VisibleDeprecationWarning is np.VisibleDeprecationWarning) assert_raises(RuntimeError, reload, numpy._globals) reload(np) assert_(_NoValue is np._NoValue) assert_(ModuleDeprecationWarning is np.ModuleDeprecationWarning) assert_(VisibleDeprecationWarning is np.VisibleDeprecationWarning) if __name__ == "__main__": run_module_suite()