OXIESEC PANEL
- Current Dir:
/
/
usr
/
local
/
lib
/
python3.6
/
dist-packages
/
numpy
/
core
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
__init__.py
4.23 KB
10/28/2024 05:59:24 AM
rw-r--r--
📁
__pycache__
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
_add_newdocs.py
197.99 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
_asarray.py
9.64 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
_dtype.py
9.59 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
_dtype_ctypes.py
3.59 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
_exceptions.py
6 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
_internal.py
25.68 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
_methods.py
8.93 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
_multiarray_tests.cpython-36m-x86_64-linux-gnu.so
155.43 KB
10/28/2024 05:59:24 AM
rwxr-xr-x
📄
_multiarray_umath.cpython-36m-x86_64-linux-gnu.so
4.12 MB
10/28/2024 05:59:24 AM
rwxr-xr-x
📄
_operand_flag_tests.cpython-36m-x86_64-linux-gnu.so
10.49 KB
10/28/2024 05:59:24 AM
rwxr-xr-x
📄
_rational_tests.cpython-36m-x86_64-linux-gnu.so
55.68 KB
10/28/2024 05:59:24 AM
rwxr-xr-x
📄
_string_helpers.py
2.79 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
_struct_ufunc_tests.cpython-36m-x86_64-linux-gnu.so
11.3 KB
10/28/2024 05:59:24 AM
rwxr-xr-x
📄
_type_aliases.py
8.64 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
_ufunc_config.py
13.5 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
_umath_tests.cpython-36m-x86_64-linux-gnu.so
24.01 KB
10/28/2024 05:59:24 AM
rwxr-xr-x
📄
arrayprint.py
57.73 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
cversions.py
347 bytes
10/28/2024 05:59:24 AM
rw-r--r--
📄
defchararray.py
68.4 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
einsumfunc.py
49.5 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
fromnumeric.py
116.42 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
function_base.py
17.61 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
generate_numpy_api.py
6.86 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
getlimits.py
18.63 KB
10/28/2024 05:59:24 AM
rw-r--r--
📁
include
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📁
lib
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
machar.py
10.53 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
memmap.py
11.29 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
multiarray.py
53.13 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
numeric.py
72.87 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
numerictypes.py
16.17 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
overrides.py
7.31 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
records.py
34.26 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
setup.py
41.42 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
setup_common.py
17.98 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
shape_base.py
28.33 KB
10/28/2024 05:59:24 AM
rw-r--r--
📁
tests
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
umath.py
1.99 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
umath_tests.py
389 bytes
10/28/2024 05:59:24 AM
rw-r--r--
Editing: _exceptions.py
Close
""" Various richly-typed exceptions, that also help us deal with string formatting in python where it's easier. By putting the formatting in `__str__`, we also avoid paying the cost for users who silence the exceptions. """ from numpy.core.overrides import set_module def _unpack_tuple(tup): if len(tup) == 1: return tup[0] else: return tup def _display_as_base(cls): """ A decorator that makes an exception class look like its base. We use this to hide subclasses that are implementation details - the user should catch the base type, which is what the traceback will show them. Classes decorated with this decorator are subject to removal without a deprecation warning. """ assert issubclass(cls, Exception) cls.__name__ = cls.__base__.__name__ return cls class UFuncTypeError(TypeError): """ Base class for all ufunc exceptions """ def __init__(self, ufunc): self.ufunc = ufunc @_display_as_base class _UFuncBinaryResolutionError(UFuncTypeError): """ Thrown when a binary resolution fails """ def __init__(self, ufunc, dtypes): super().__init__(ufunc) self.dtypes = tuple(dtypes) assert len(self.dtypes) == 2 def __str__(self): return ( "ufunc {!r} cannot use operands with types {!r} and {!r}" ).format( self.ufunc.__name__, *self.dtypes ) @_display_as_base class _UFuncNoLoopError(UFuncTypeError): """ Thrown when a ufunc loop cannot be found """ def __init__(self, ufunc, dtypes): super().__init__(ufunc) self.dtypes = tuple(dtypes) def __str__(self): return ( "ufunc {!r} did not contain a loop with signature matching types " "{!r} -> {!r}" ).format( self.ufunc.__name__, _unpack_tuple(self.dtypes[:self.ufunc.nin]), _unpack_tuple(self.dtypes[self.ufunc.nin:]) ) @_display_as_base class _UFuncCastingError(UFuncTypeError): def __init__(self, ufunc, casting, from_, to): super().__init__(ufunc) self.casting = casting self.from_ = from_ self.to = to @_display_as_base class _UFuncInputCastingError(_UFuncCastingError): """ Thrown when a ufunc input cannot be casted """ def __init__(self, ufunc, casting, from_, to, i): super().__init__(ufunc, casting, from_, to) self.in_i = i def __str__(self): # only show the number if more than one input exists i_str = "{} ".format(self.in_i) if self.ufunc.nin != 1 else "" return ( "Cannot cast ufunc {!r} input {}from {!r} to {!r} with casting " "rule {!r}" ).format( self.ufunc.__name__, i_str, self.from_, self.to, self.casting ) @_display_as_base class _UFuncOutputCastingError(_UFuncCastingError): """ Thrown when a ufunc output cannot be casted """ def __init__(self, ufunc, casting, from_, to, i): super().__init__(ufunc, casting, from_, to) self.out_i = i def __str__(self): # only show the number if more than one output exists i_str = "{} ".format(self.out_i) if self.ufunc.nout != 1 else "" return ( "Cannot cast ufunc {!r} output {}from {!r} to {!r} with casting " "rule {!r}" ).format( self.ufunc.__name__, i_str, self.from_, self.to, self.casting ) # Exception used in shares_memory() @set_module('numpy') class TooHardError(RuntimeError): pass @set_module('numpy') class AxisError(ValueError, IndexError): """ Axis supplied was invalid. """ def __init__(self, axis, ndim=None, msg_prefix=None): # single-argument form just delegates to base class if ndim is None and msg_prefix is None: msg = axis # do the string formatting here, to save work in the C code else: msg = ("axis {} is out of bounds for array of dimension {}" .format(axis, ndim)) if msg_prefix is not None: msg = "{}: {}".format(msg_prefix, msg) super(AxisError, self).__init__(msg) @_display_as_base class _ArrayMemoryError(MemoryError): """ Thrown when an array cannot be allocated""" def __init__(self, shape, dtype): self.shape = shape self.dtype = dtype @property def _total_size(self): num_bytes = self.dtype.itemsize for dim in self.shape: num_bytes *= dim return num_bytes @staticmethod def _size_to_string(num_bytes): """ Convert a number of bytes into a binary size string """ # https://en.wikipedia.org/wiki/Binary_prefix LOG2_STEP = 10 STEP = 1024 units = ['bytes', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB'] unit_i = max(num_bytes.bit_length() - 1, 1) // LOG2_STEP unit_val = 1 << (unit_i * LOG2_STEP) n_units = num_bytes / unit_val del unit_val # ensure we pick a unit that is correct after rounding if round(n_units) == STEP: unit_i += 1 n_units /= STEP # deal with sizes so large that we don't have units for them if unit_i >= len(units): new_unit_i = len(units) - 1 n_units *= 1 << ((unit_i - new_unit_i) * LOG2_STEP) unit_i = new_unit_i unit_name = units[unit_i] # format with a sensible number of digits if unit_i == 0: # no decimal point on bytes return '{:.0f} {}'.format(n_units, unit_name) elif round(n_units) < 1000: # 3 significant figures, if none are dropped to the left of the . return '{:#.3g} {}'.format(n_units, unit_name) else: # just give all the digits otherwise return '{:#.0f} {}'.format(n_units, unit_name) def __str__(self): size_str = self._size_to_string(self._total_size) return ( "Unable to allocate {} for an array with shape {} and data type {}" .format(size_str, self.shape, self.dtype) )