OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
numpy
/
lib
/
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
📁
data
-
10/28/2024 08:45:52 AM
rwxr-xr-x
📄
test__datasource.py
10.16 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
test__iotools.py
13.15 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
test__version.py
2.08 KB
09/17/2017 01:29:38 PM
rw-r--r--
📄
test_arraypad.py
42.68 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
test_arraysetops.py
15.49 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
test_arrayterator.py
1.42 KB
09/17/2017 01:29:38 PM
rw-r--r--
📄
test_financial.py
6.62 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
test_format.py
33.49 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
test_function_base.py
126.81 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
test_index_tricks.py
13.1 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
test_io.py
75.59 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
test_mixins.py
6.7 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
test_nanfunctions.py
34.07 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
test_packbits.py
12.63 KB
09/17/2017 01:29:38 PM
rw-r--r--
📄
test_polynomial.py
7.03 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
test_recfunctions.py
30.54 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
test_regression.py
8.62 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
test_shape_base.py
19.02 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
test_stride_tricks.py
14.69 KB
09/17/2017 01:29:38 PM
rw-r--r--
📄
test_twodim_base.py
16.72 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
test_type_check.py
12.62 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
test_ufunclike.py
2.96 KB
09/29/2017 05:31:46 PM
rw-r--r--
📄
test_utils.py
1.62 KB
09/17/2017 01:29:38 PM
rw-r--r--
Editing: test_utils.py
Close
from __future__ import division, absolute_import, print_function import sys from numpy.core import arange from numpy.testing import ( run_module_suite, assert_, assert_equal, assert_raises_regex, dec ) from numpy.lib import deprecate import numpy.lib.utils as utils if sys.version_info[0] >= 3: from io import StringIO else: from StringIO import StringIO @dec.skipif(sys.flags.optimize == 2) def test_lookfor(): out = StringIO() utils.lookfor('eigenvalue', module='numpy', output=out, import_modules=False) out = out.getvalue() assert_('numpy.linalg.eig' in out) @deprecate def old_func(self, x): return x @deprecate(message="Rather use new_func2") def old_func2(self, x): return x def old_func3(self, x): return x new_func3 = deprecate(old_func3, old_name="old_func3", new_name="new_func3") def test_deprecate_decorator(): assert_('deprecated' in old_func.__doc__) def test_deprecate_decorator_message(): assert_('Rather use new_func2' in old_func2.__doc__) def test_deprecate_fn(): assert_('old_func3' in new_func3.__doc__) assert_('new_func3' in new_func3.__doc__) def test_safe_eval_nameconstant(): # Test if safe_eval supports Python 3.4 _ast.NameConstant utils.safe_eval('None') def test_byte_bounds(): a = arange(12).reshape(3, 4) low, high = utils.byte_bounds(a) assert_equal(high - low, a.size * a.itemsize) def test_assert_raises_regex_context_manager(): with assert_raises_regex(ValueError, 'no deprecation warning'): raise ValueError('no deprecation warning') if __name__ == "__main__": run_module_suite()