Skip to content

Instantly share code, notes, and snippets.

@olgabot
Last active August 29, 2015 13:58
Show Gist options
  • Save olgabot/10069866 to your computer and use it in GitHub Desktop.
Save olgabot/10069866 to your computer and use it in GitHub Desktop.
Segfault on scipy test_djbfft

How Numpy was installed:

git clone [email protected]:numpy/numpy
git clone [email protected]:scipy/scipy
cd numpy
cp ~/.numpy.site.cfg .

emacs numpy/distutils/intelccompiler.py 
# In "IntelEM64TCCompiler", changed:
# self.cc_exe = 'icc -m64 -fPIC'
# to:
# self.cc_exe = 'icc -m64 -fPIC  -O3 -g -fp-model strict -fomit-frame-pointer -openmp -xhost'

emacs numpy/distutils/fcompiler/intel.py
# In "IntelEM64TFCompiler", changed:
#    def get_flags_opt(self):
# #       return ['-i8 -xhost -openmp -fp-model strict']
#        return ['-xhost -openmp -fp-model strict'] 
# to:
#    def get_flags_opt(self):
#        return ['-i8 -xhost -openmp -fp-model strict']
# #        return ['-xhost -openmp -fp-model strict']

CC=icc F77=ifort python setup.py config --compiler=intelem build_clib --compiler=intelem build_ext --compiler=intelem build
export LD_LIBRARY_PATH=
source /opt/intel/composer_xe_2013.1.117/bin/compilervars.sh intel64
source /opt/intel/composer_xe_2013.1.117/mkl/bin/mklvars.sh intel64
export LD_RUN_PATH=/opt/intel/composer_xe_2013.1.117/mkl/lib/intel64:/opt/intel/composer_xe_2013.1.117/compiler/lib/intel64
CC=icc F77=ifort python setup.py install

How Scipy was installed:

cd ../scipy
cp ../numpy/site.cfg .
rm -rf build
CC=icc F77=ifort python setup.py config --compiler=intelem --fcompiler=intelem build_clib --compiler=intelem --fcompiler=intelem build_ext --compiler=intelem --fcompiler=intelem build
CC=icc F77=ifort python setup.py install
lapack_opt_info:
libraries = ['mkl_lapack95_lp64', 'mkl_rt', 'pthread', 'iomp5', 'iomp5']
library_dirs = ['/opt/intel/composer_xe_2013.1.117/mkl/lib/intel64', '/opt/intel/composer_xe_2013.1.117/compiler/lib/intel64']
define_macros = [('SCIPY_MKL_H', None)]
include_dirs = ['/opt/intel/composer_xe_2013.1.117/compiler/include', '/opt/intel/composer_xe_2013.1.117/mkl/include']
blas_opt_info:
libraries = ['mkl_rt', 'pthread', 'iomp5']
library_dirs = ['/opt/intel/composer_xe_2013.1.117/mkl/lib/intel64', '/opt/intel/composer_xe_2013.1.117/compiler/lib/intel64']
define_macros = [('SCIPY_MKL_H', None)]
include_dirs = ['/opt/intel/composer_xe_2013.1.117/compiler/include', '/opt/intel/composer_xe_2013.1.117/mkl/include']
openblas_info:
NOT AVAILABLE
lapack_mkl_info:
libraries = ['mkl_lapack95_lp64', 'mkl_rt', 'pthread', 'iomp5', 'iomp5']
library_dirs = ['/opt/intel/composer_xe_2013.1.117/mkl/lib/intel64', '/opt/intel/composer_xe_2013.1.117/compiler/lib/intel64']
define_macros = [('SCIPY_MKL_H', None)]
include_dirs = ['/opt/intel/composer_xe_2013.1.117/compiler/include', '/opt/intel/composer_xe_2013.1.117/mkl/include']
blas_mkl_info:
libraries = ['mkl_rt', 'pthread', 'iomp5']
library_dirs = ['/opt/intel/composer_xe_2013.1.117/mkl/lib/intel64', '/opt/intel/composer_xe_2013.1.117/compiler/lib/intel64']
define_macros = [('SCIPY_MKL_H', None)]
include_dirs = ['/opt/intel/composer_xe_2013.1.117/compiler/include', '/opt/intel/composer_xe_2013.1.117/mkl/include']
mkl_info:
libraries = ['mkl_rt', 'pthread', 'iomp5']
library_dirs = ['/opt/intel/composer_xe_2013.1.117/mkl/lib/intel64', '/opt/intel/composer_xe_2013.1.117/compiler/lib/intel64']
define_macros = [('SCIPY_MKL_H', None)]
include_dirs = ['/opt/intel/composer_xe_2013.1.117/compiler/include', '/opt/intel/composer_xe_2013.1.117/mkl/include']
Running unit tests for numpy
NumPy version 1.9.0.dev-52d5d10
NumPy is installed in /projects/ps-yeolab/software/lib/python2.7/site-packages/numpy
Python version 2.7.5 (default, Feb 4 2014, 17:34:21) [GCC 4.4.6 20120305 (Red Hat 4.4.6-4)]
nose version 1.3.0
nose.config: INFO: Ignoring files matching ['^\\.', '^_', '^setup\\.py$']
nose.config: INFO: Excluding tests matching ['f2py_ext', 'f2py_f90_ext', 'gen_ext', 'pyrex_ext', 'swig_ext']
test_complex (test_abc.ABC) ... ok
test_floats (test_abc.ABC) ... ok
test_int (test_abc.ABC) ... ok
test_uint (test_abc.ABC) ... ok
test_api.test_array_array ... ok
test_api.test_fastCopyAndTranspose ... ok
test_api.test_array_astype ... ok
test_api.test_copyto_fromscalar ... ok
test_api.test_copyto ... ok
test_api.test_copyto_permut ... ok
test_api.test_copy_order ... ok
test_api.test_contiguous_flags ... ok
test_api.test_broadcast_arrays ... ok
Basic test of array2string. ... ok
Test custom format function for each element in array. ... ok
This should only apply to 0-D arrays. See #1218. ... ok
test_arrayprint.TestArrayRepr.test_nan_inf ... ok
test_str (test_arrayprint.TestComplexArray) ... ok
test_arrayprint.TestPrintOptions.test_basic ... ok
test_arrayprint.TestPrintOptions.test_formatter ... ok
test_arrayprint.TestPrintOptions.test_formatter_reset ... ok
test_arrayprint.test_unicode_object_array ... ok
Ticket 844. ... ok
test_blasdot.test_blasdot_used ... ok
test_blasdot.test_dot_2args ... ok
test_blasdot.test_dot_3args ... ok
test_blasdot.test_dot_3args_errors ... ok
Test numpy dot with different order C, F ... ok
test_blasdot.test_dot_override ... ok
test_cast_overflow (test_datetime.TestDateTime) ... ok
test_creation_overflow (test_datetime.TestDateTime) ... ok
test_datetime_add (test_datetime.TestDateTime) ... ok
test_datetime_arange (test_datetime.TestDateTime) ... ok
test_datetime_array_find_type (test_datetime.TestDateTime) ... ok
test_datetime_array_str (test_datetime.TestDateTime) ... ok
test_datetime_as_string (test_datetime.TestDateTime) ... ok
test_datetime_as_string_timezone (test_datetime.TestDateTime) ... ok
test_datetime_busday_holidays_count (test_datetime.TestDateTime) ... ok
test_datetime_busday_holidays_offset (test_datetime.TestDateTime) ... ok
test_datetime_busday_offset (test_datetime.TestDateTime) ... ok
test_datetime_busdaycalendar (test_datetime.TestDateTime) ... ok
test_datetime_casting_rules (test_datetime.TestDateTime) ... ok
test_datetime_compare (test_datetime.TestDateTime) ... ok
test_datetime_divide (test_datetime.TestDateTime) ... ok
test_datetime_dtype_creation (test_datetime.TestDateTime) ... ok
test_datetime_is_busday (test_datetime.TestDateTime) ... ok
test_datetime_like (test_datetime.TestDateTime) ... ok
test_datetime_maximum_reduce (test_datetime.TestDateTime) ... ok
test_datetime_minmax (test_datetime.TestDateTime) ... ok
test_datetime_multiply (test_datetime.TestDateTime) ... ok
test_datetime_nat_casting (test_datetime.TestDateTime) ... ok
test_datetime_scalar_construction (test_datetime.TestDateTime) ... ok
test_datetime_string_conversion (test_datetime.TestDateTime) ... ok
test_datetime_subtract (test_datetime.TestDateTime) ... ok
test_datetime_unary (test_datetime.TestDateTime) ... ok
test_datetime_y2038 (test_datetime.TestDateTime) ... ok
test_days_creation (test_datetime.TestDateTime) ... ok
test_days_to_pydate (test_datetime.TestDateTime) ... ok
test_different_unit_comparison (test_datetime.TestDateTime) ... ok
test_divisor_conversion_as (test_datetime.TestDateTime) ... ok
test_divisor_conversion_day (test_datetime.TestDateTime) ... ok
test_divisor_conversion_fs (test_datetime.TestDateTime) ... ok
test_divisor_conversion_hour (test_datetime.TestDateTime) ... ok
test_divisor_conversion_minute (test_datetime.TestDateTime) ... ok
test_divisor_conversion_month (test_datetime.TestDateTime) ... ok
test_divisor_conversion_second (test_datetime.TestDateTime) ... ok
test_divisor_conversion_week (test_datetime.TestDateTime) ... ok
test_divisor_conversion_year (test_datetime.TestDateTime) ... ok
test_dtype_comparison (test_datetime.TestDateTime) ... ok
test_dtype_promotion (test_datetime.TestDateTime) ... ok
test_hours (test_datetime.TestDateTime) ... ok
test_month_truncation (test_datetime.TestDateTime) ... ok
test_pickle (test_datetime.TestDateTime) ... ok
test_pydatetime_creation (test_datetime.TestDateTime) ... ok
test_pyobject_roundtrip (test_datetime.TestDateTime) ... ok
Verify that datetime dtype __setstate__ can handle bad arguments ... ok
test_string_parser_error_check (test_datetime.TestDateTime) ... ok
test_string_parser_variants (test_datetime.TestDateTime) ... ok
test_timedelta_arange (test_datetime.TestDateTime) ... ok
test_timedelta_scalar_construction (test_datetime.TestDateTime) ... ok
test_timedelta_scalar_construction_units (test_datetime.TestDateTime) ... ok
test_basic (test_datetime.TestDateTimeData) ... ok
test_from_object_array (test_defchararray.TestBasic) ... ok
test_from_object_array_unicode (test_defchararray.TestBasic) ... ok
test_from_string (test_defchararray.TestBasic) ... ok
test_from_string_array (test_defchararray.TestBasic) ... ok
test_from_unicode (test_defchararray.TestBasic) ... ok
test_from_unicode_array (test_defchararray.TestBasic) ... ok
test_unicode_upconvert (test_defchararray.TestBasic) ... ok
test_it (test_defchararray.TestChar) ... ok
test_equal (test_defchararray.TestComparisons) ... ok
test_greater (test_defchararray.TestComparisons) ... ok
test_greater_equal (test_defchararray.TestComparisons) ... ok
test_less (test_defchararray.TestComparisons) ... ok
test_less_equal (test_defchararray.TestComparisons) ... ok
test_not_equal (test_defchararray.TestComparisons) ... ok
test_equal (test_defchararray.TestComparisonsMixed1) ... ok
test_greater (test_defchararray.TestComparisonsMixed1) ... ok
test_greater_equal (test_defchararray.TestComparisonsMixed1) ... ok
test_less (test_defchararray.TestComparisonsMixed1) ... ok
test_less_equal (test_defchararray.TestComparisonsMixed1) ... ok
test_not_equal (test_defchararray.TestComparisonsMixed1) ... ok
test_equal (test_defchararray.TestComparisonsMixed2) ... ok
test_greater (test_defchararray.TestComparisonsMixed2) ... ok
test_greater_equal (test_defchararray.TestComparisonsMixed2) ... ok
test_less (test_defchararray.TestComparisonsMixed2) ... ok
test_less_equal (test_defchararray.TestComparisonsMixed2) ... ok
test_not_equal (test_defchararray.TestComparisonsMixed2) ... ok
test_count (test_defchararray.TestInformation) ... ok
test_endswith (test_defchararray.TestInformation) ... ok
test_find (test_defchararray.TestInformation) ... ok
test_index (test_defchararray.TestInformation) ... ok
test_isalnum (test_defchararray.TestInformation) ... ok
test_isalpha (test_defchararray.TestInformation) ... ok
test_isdigit (test_defchararray.TestInformation) ... ok
test_islower (test_defchararray.TestInformation) ... ok
test_isspace (test_defchararray.TestInformation) ... ok
test_istitle (test_defchararray.TestInformation) ... ok
test_isupper (test_defchararray.TestInformation) ... ok
test_len (test_defchararray.TestInformation) ... ok
test_rfind (test_defchararray.TestInformation) ... ok
test_rindex (test_defchararray.TestInformation) ... ok
test_startswith (test_defchararray.TestInformation) ... ok
test_capitalize (test_defchararray.TestMethods) ... ok
test_center (test_defchararray.TestMethods) ... ok
test_decode (test_defchararray.TestMethods) ... ok
test_encode (test_defchararray.TestMethods) ... ok
test_expandtabs (test_defchararray.TestMethods) ... ok
test_isdecimal (test_defchararray.TestMethods) ... ok
test_isnumeric (test_defchararray.TestMethods) ... ok
test_join (test_defchararray.TestMethods) ... ok
test_ljust (test_defchararray.TestMethods) ... ok
test_lower (test_defchararray.TestMethods) ... ok
test_lstrip (test_defchararray.TestMethods) ... ok
test_partition (test_defchararray.TestMethods) ... ok
test_replace (test_defchararray.TestMethods) ... ok
test_rjust (test_defchararray.TestMethods) ... ok
test_rpartition (test_defchararray.TestMethods) ... ok
test_rsplit (test_defchararray.TestMethods) ... ok
test_rstrip (test_defchararray.TestMethods) ... ok
test_split (test_defchararray.TestMethods) ... ok
test_splitlines (test_defchararray.TestMethods) ... ok
test_strip (test_defchararray.TestMethods) ... ok
test_swapcase (test_defchararray.TestMethods) ... ok
test_title (test_defchararray.TestMethods) ... ok
test_upper (test_defchararray.TestMethods) ... ok
test_add (test_defchararray.TestOperations) ... ok
Ticket #856 ... ok
test_mul (test_defchararray.TestOperations) ... ok
test_radd (test_defchararray.TestOperations) ... ok
test_rmod (test_defchararray.TestOperations) ... ok
test_rmul (test_defchararray.TestOperations) ... ok
test_broadcast_error (test_defchararray.TestVecString) ... ok
test_invalid_args_tuple (test_defchararray.TestVecString) ... ok
test_invalid_function_args (test_defchararray.TestVecString) ... ok
test_invalid_result_type (test_defchararray.TestVecString) ... ok
test_invalid_type_descr (test_defchararray.TestVecString) ... ok
test_non_existent_method (test_defchararray.TestVecString) ... ok
test_non_string_array (test_defchararray.TestVecString) ... ok
test1 (test_defchararray.TestWhitespace) ... ok
Regression test for ticket 1948. ... ok
test_deprecations.TestArrayToIndexDeprecation.test_array_to_index_deprecation ... ok
test_deprecations.TestBooleanArgumentDeprecation.test_bool_as_int_argument ... ok
test_deprecations.TestBooleanSubtractDeprecations.test_operator_deprecation ... ok
test_deprecations.TestFloatNonIntegerArgumentDeprecation.test_indexing ... ok
test_deprecations.TestFloatNonIntegerArgumentDeprecation.test_non_integer_argument_deprecations ... ok
test_deprecations.TestFloatNonIntegerArgumentDeprecation.test_non_integer_sequence_multiplication ... ok
test_deprecations.TestFloatNonIntegerArgumentDeprecation.test_slicing ... ok
test_deprecations.TestFloatNonIntegerArgumentDeprecation.test_valid_indexing ... ok
test_deprecations.TestFloatNonIntegerArgumentDeprecation.test_valid_slicing ... ok
test_deprecations.TestMultipleEllipsisDeprecation.test_basic ... ok
test_deprecations.TestNonIntegerArrayLike.test_basic ... ok
test_deprecations.TestNonIntegerArrayLike.test_boolean_futurewarning ... ok
test_bad_param (test_dtype.TestBuiltin) ... ok
test_dtype (test_dtype.TestBuiltin) ... ok
test_equivalent_dtype_hashing (test_dtype.TestBuiltin) ... ok
test_invalid_types (test_dtype.TestBuiltin) ... ok
Only test hash runs at all. ... ok
test_dtype.TestDtypeAttributeDeletion.test_dtype_non_writable_attributes_deletion ... ok
test_dtype.TestDtypeAttributeDeletion.test_dtype_writable_attributes_deletion ... ok
test_name_builtin (test_dtype.TestDtypeAttributes) ... ok
test_name_dtype_subclass (test_dtype.TestDtypeAttributes) ... ok
test_metadata_rejects_nondict (test_dtype.TestMetadata) ... ok
test_metadata_takes_dict (test_dtype.TestMetadata) ... ok
test_nested_metadata (test_dtype.TestMetadata) ... ok
test_no_metadata (test_dtype.TestMetadata) ... ok
test1 (test_dtype.TestMonsterType) ... ok
test_aligned_size (test_dtype.TestRecord) ... ok
test_comma_datetime (test_dtype.TestRecord) ... ok
test_different_names (test_dtype.TestRecord) ... ok
test_different_titles (test_dtype.TestRecord) ... ok
Test whether equivalent record dtypes hash the same. ... ok
Test if an appropriate exception is raised when passing bad values to ... ok
test_union_struct (test_dtype.TestRecord) ... ok
test_base_dtype_with_object_type (test_dtype.TestString) ... ok
test_complex_dtype_repr (test_dtype.TestString) ... ok
test_complex_dtype_str (test_dtype.TestString) ... ok
test_dtype_str_with_long_in_shape (test_dtype.TestString) ... ok
test_alignment (test_dtype.TestSubarray) ... ok
Test whether equivalent subarray dtypes hash the same. ... ok
Test whether different subarray dtypes hash differently. ... ok
Test some data types that are equal ... ok
test_shape_invalid (test_dtype.TestSubarray) ... ok
Test some more complicated cases that shouldn't be equal ... ok
test_shape_sequence (test_dtype.TestSubarray) ... ok
Test some simple cases that shouldn't be equal ... ok
test_single_subarray (test_dtype.TestSubarray) ... ok
test_einsum_broadcast (test_einsum.TestEinSum) ... ok
test_einsum_errors (test_einsum.TestEinSum) ... ok
test_einsum_fixedstridebug (test_einsum.TestEinSum) ... ok
test_einsum_misc (test_einsum.TestEinSum) ... ok
test_einsum_sums_cfloat128 (test_einsum.TestEinSum) ... ok
test_einsum_sums_cfloat64 (test_einsum.TestEinSum) ... ok
test_einsum_sums_clongdouble (test_einsum.TestEinSum) ... ok
test_einsum_sums_float16 (test_einsum.TestEinSum) ... ok
test_einsum_sums_float32 (test_einsum.TestEinSum) ... ok
test_einsum_sums_float64 (test_einsum.TestEinSum) ... ok
test_einsum_sums_int16 (test_einsum.TestEinSum) ... ok
test_einsum_sums_int32 (test_einsum.TestEinSum) ... ok
test_einsum_sums_int64 (test_einsum.TestEinSum) ... ok
test_einsum_sums_int8 (test_einsum.TestEinSum) ... ok
test_einsum_sums_longdouble (test_einsum.TestEinSum) ... ok
test_einsum_sums_uint16 (test_einsum.TestEinSum) ... ok
test_einsum_sums_uint32 (test_einsum.TestEinSum) ... ok
test_einsum_sums_uint64 (test_einsum.TestEinSum) ... ok
test_einsum_sums_uint8 (test_einsum.TestEinSum) ... ok
test_einsum_views (test_einsum.TestEinSum) ... ok
test_divide (test_errstate.TestErrstate) ... ok
test_errcall (test_errstate.TestErrstate) ... ok
test_invalid (test_errstate.TestErrstate) ... ok
test_array_scalar (test_function_base.TestLinspace) ... ok
test_basic (test_function_base.TestLinspace) ... ok
test_complex (test_function_base.TestLinspace) ... ok
test_corner (test_function_base.TestLinspace) ... ok
test_dtype (test_function_base.TestLinspace) ... ok
test_physical_quantities (test_function_base.TestLinspace) ... ok
test_type (test_function_base.TestLinspace) ... ok
test_basic (test_function_base.TestLogspace) ... ok
test_dtype (test_function_base.TestLogspace) ... ok
test_singleton (test_getlimits.TestDouble) ... ok
test_singleton (test_getlimits.TestHalf) ... ok
test_basic (test_getlimits.TestIinfo) ... ok
test_unsigned_max (test_getlimits.TestIinfo) ... ok
test_singleton (test_getlimits.TestLongdouble) ... ok
test_singleton (test_getlimits.TestPythonFloat) ... ok
test_finfo_repr (test_getlimits.TestRepr) ... ok
test_iinfo_repr (test_getlimits.TestRepr) ... ok
test_singleton (test_getlimits.TestSingle) ... ok
test_getlimits.test_instances ... ok
Test that half is compatible with __array_interface__ ... ok
Test that half gets coerced properly with the other types ... ok
Checks that all 16-bit values survive conversion ... ok
Take every finite float16, and check the casting functions with ... ok
test_half_fpe (test_half.TestHalf) ... ok
Test the various ArrFuncs ... ok
Make sure comparisons are working right ... ok
Checks that rounding when converting to half is correct ... ok
Test the various ufuncs ... ok
Confirms a small number of known half values ... ok
test_nans_infs (test_half.TestHalf) ... ok
Test np.spacing and np.nextafter ... ok
take from a 0-length dimension ... ok
cases in iterators.c ... ok
cases from mapping.c ... ok
cases from methods.c ... ok
test_multiindex_exceptions (test_indexerrors.TestIndexErrors) ... ok
test_put_exceptions (test_indexerrors.TestIndexErrors) ... ok
test_take_from_object (test_indexerrors.TestIndexErrors) ... ok
test_broadcast_subspace (test_indexing.TestBroadcastedAssignments) ... ok
test_index_is_larger (test_indexing.TestBroadcastedAssignments) ... ok
test_prepend_not_one (test_indexing.TestBroadcastedAssignments) ... ok
test_prepending_ones (test_indexing.TestBroadcastedAssignments) ... ok
test_simple_broadcasting_errors (test_indexing.TestBroadcastedAssignments) ... ok
test_getitem (test_indexing.TestCApiAccess) ... ok
test_setitem (test_indexing.TestCApiAccess) ... ok
test_cast_equivalence (test_indexing.TestFancyIndexingEquivalence) ... ok
test_object_assign (test_indexing.TestFancyIndexingEquivalence) ... ok
test_scalar_return_type (test_indexing.TestFieldIndexing) ... ok
test_boolean_assignment_value_mismatch (test_indexing.TestIndexing) ... ok
test_boolean_indexing_onedim (test_indexing.TestIndexing) ... ok
test_boolean_indexing_twodim (test_indexing.TestIndexing) ... ok
test_broaderrors_indexing (test_indexing.TestIndexing) ... ok
test_ellipsis_index (test_indexing.TestIndexing) ... ok
test_empty_fancy_index (test_indexing.TestIndexing) ... ok
test_empty_tuple_index (test_indexing.TestIndexing) ... ok
test_everything_returns_views (test_indexing.TestIndexing) ... ok
test_memory_order (test_indexing.TestIndexing) ... ok
test_nonbaseclass_values (test_indexing.TestIndexing) ... ok
test_none_index (test_indexing.TestIndexing) ... ok
test_reverse_strides_and_subspace_bufferinit (test_indexing.TestIndexing) ... ok
test_reversed_strides_result_allocation (test_indexing.TestIndexing) ... ok
test_same_kind_index_casting (test_indexing.TestIndexing) ... ok
test_scalar_array_bool (test_indexing.TestIndexing) ... ok
test_scalar_return_type (test_indexing.TestIndexing) ... ok
test_single_bool_index (test_indexing.TestIndexing) ... ok
test_single_int_index (test_indexing.TestIndexing) ... ok
test_small_regressions (test_indexing.TestIndexing) ... ok
test_too_many_fancy_indices_special_case (test_indexing.TestIndexing) ... ok
test_trivial_fancy_out_of_bounds (test_indexing.TestIndexing) ... ok
test_unaligned (test_indexing.TestIndexing) ... ok
test_uncontiguous_subspace_assignment (test_indexing.TestIndexing) ... ok
test_1d (test_indexing.TestMultiIndexingAutomated) ... ok
test_boolean (test_indexing.TestMultiIndexingAutomated) ... ok
test_multidim (test_indexing.TestMultiIndexingAutomated) ... ok
test_basic (test_indexing.TestSubclasses) ... ok
test_finalize_gets_full_info (test_indexing.TestSubclasses) ... ok
test_matrix_fancy (test_indexing.TestSubclasses) ... ok
test_refcounting (test_item_selection.TestTake) ... ok
test_simple (test_item_selection.TestTake) ... ok
test_unicode_mode (test_item_selection.TestTake) ... ok
Regression testing for #759: instanciating MachAr for dtype = ... ok
test_arithmetic_drops_references (test_memmap.TestMemmap) ... ok
test_attributes (test_memmap.TestMemmap) ... ok
test_del (test_memmap.TestMemmap) ... ok
test_filename (test_memmap.TestMemmap) ... ok
test_filename_fileobj (test_memmap.TestMemmap) ... ok
test_flush (test_memmap.TestMemmap) ... ok
test_indexing_drops_references (test_memmap.TestMemmap) ... ok
test_open_with_filename (test_memmap.TestMemmap) ... ok
test_roundtrip (test_memmap.TestMemmap) ... ok
test_slicing_keeps_references (test_memmap.TestMemmap) ... ok
test_unnamed_file (test_memmap.TestMemmap) ... ok
test_view (test_memmap.TestMemmap) ... ok
test_all (test_multiarray.TestArgmax) ... ok
test_combinations (test_multiarray.TestArgmax) ... ok
test_output_shape (test_multiarray.TestArgmax) ... ok
test_all (test_multiarray.TestArgmin) ... ok
test_combinations (test_multiarray.TestArgmin) ... ok
test_minimum_signed_integers (test_multiarray.TestArgmin) ... ok
test_output_shape (test_multiarray.TestArgmin) ... ok
test_multiarray.TestArrayAttributeDeletion.test_multiarray_flags_not_writable_attribute_deletion ... ok
test_multiarray.TestArrayAttributeDeletion.test_multiarray_flags_writable_attribute_deletion ... ok
test_multiarray.TestArrayAttributeDeletion.test_multiarray_not_writable_attributes_deletion ... ok
ticket #2046, should not seqfault, raise AttributeError ... ok
test_array (test_multiarray.TestArrayConstruction) ... ok
test_eq (test_multiarray.TestArrayPriority) ... ok
test_ge (test_multiarray.TestArrayPriority) ... ok
test_gt (test_multiarray.TestArrayPriority) ... ok
test_le (test_multiarray.TestArrayPriority) ... ok
test_lt (test_multiarray.TestArrayPriority) ... ok
test_ne (test_multiarray.TestArrayPriority) ... ok
test_assignment_broadcasting (test_multiarray.TestAssignment) ... ok
test_assignment_errors (test_multiarray.TestAssignment) ... ok
test_attributes (test_multiarray.TestAttributes) ... ok
test_dtypeattr (test_multiarray.TestAttributes) ... ok
test_fill (test_multiarray.TestAttributes) ... ok
test_fill_struct_array (test_multiarray.TestAttributes) ... ok
test_int_subclassing (test_multiarray.TestAttributes) ... ok
test_set_stridesattr (test_multiarray.TestAttributes) ... ok
test_stridesattr (test_multiarray.TestAttributes) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__add__', True) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__add__', False) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__and__', True) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__and__', False) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__divmod__', True) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__divmod__', False) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__eq__', True) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__eq__', False) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__floordiv__', True) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__floordiv__', False) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__ge__', True) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__ge__', False) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__gt__', True) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__gt__', False) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__le__', True) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__le__', False) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__lshift__', True) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__lshift__', False) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__lt__', True) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__lt__', False) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__mod__', True) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__mod__', False) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__mul__', True) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__mul__', False) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__ne__', True) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__ne__', False) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__or__', True) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__or__', False) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__pow__', True) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__pow__', False) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__rshift__', True) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__rshift__', False) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__sub__', True) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__sub__', False) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__truediv__', True) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__truediv__', False) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__xor__', True) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_precedence('__xor__', False) ... ok
test_multiarray.TestBinop.test_ufunc_override_rop_simple ... ok
test_count_nonzero (test_multiarray.TestBool) ... ok
test_count_nonzero_unaligned (test_multiarray.TestBool) ... ok
test_sum (test_multiarray.TestBool) ... ok
test_test_interning (test_multiarray.TestBool) ... ok
test_basic (test_multiarray.TestChoose) ... ok
test_broadcast1 (test_multiarray.TestChoose) ... ok
test_broadcast2 (test_multiarray.TestChoose) ... ok
test_basic (test_multiarray.TestClip) ... ok
test_max_or_min (test_multiarray.TestClip) ... ok
test_record_array (test_multiarray.TestClip) ... ok
test_array_scalar_relational_operation (test_multiarray.TestConversion) ... ok
test_from_attribute (test_multiarray.TestCreation) ... ok
test_from_string (test_multiarray.TestCreation) ... ok
Should not segfault. ... ok
test_sequence_long (test_multiarray.TestCreation) ... ok
test_sequence_non_homogenous (test_multiarray.TestCreation) ... ok
test_void (test_multiarray.TestCreation) ... ok
test_zeros (test_multiarray.TestCreation) ... ok
test_zeros_obj (test_multiarray.TestCreation) ... ok
test_dot_2args (test_multiarray.TestDot) ... ok
test_dot_3args (test_multiarray.TestDot) ... ok
test_dot_3args_errors (test_multiarray.TestDot) ... ok
test_dot_scalar_and_matrix_of_objects (test_multiarray.TestDot) ... ok
test_construction (test_multiarray.TestDtypedescr) ... ok
test_assign_mask (test_multiarray.TestFancyIndexing) ... ok
test_assign_mask2 (test_multiarray.TestFancyIndexing) ... ok
test_list (test_multiarray.TestFancyIndexing) ... ok
test_mask (test_multiarray.TestFancyIndexing) ... ok
test_mask2 (test_multiarray.TestFancyIndexing) ... ok
test_tuple (test_multiarray.TestFancyIndexing) ... ok
test_otherflags (test_multiarray.TestFlags) ... ok
test_writeable (test_multiarray.TestFlags) ... ok
test___array__ (test_multiarray.TestFlat) ... ok
test_contiguous (test_multiarray.TestFlat) ... ok
test_discontiguous (test_multiarray.TestFlat) ... ok
test_multiarray.TestFromBuffer.test_empty('', array([], dtype=float64), {}) ... ok
test_multiarray.TestFromBuffer.test_ip_basic("8n\xd9I\x93\xba\x05@\xe25\x88\xee\xf8\xee\xf8?\xae4\xdey\xc1\xc4\x12@\x8b\xed\xbb\xe1\xeb0\xed?\xe9y\xf43\xf4\x0f\x06@\x19\x13\x85\xbc\xb2\xc8\xfb?H\x00\xe1\xb3\x94\x1e\x13@\x0c\xe8T\xae\x8c'\xf1?}\xda\xd1\xaa\xbe\x91\xfc?\x85zf\x9d\xd3\x0f\x0e@\x01\xd7\x07{U\xd8\r@R\xb1\x89\xe0\xef\x08\x04@\x19\x1d=\xab\x12t\x08@\x16\x9fU\xfb\t3\x0c@\xce)Ac\xd2\xc8\x10@9!\xcb\xb5\x04\x16\xfe?\x07\x90\x98\xe9\x17p\r@@f\xecK\x14\xd6\x10@\xd4\x9e?\x10I\x13\xfd?\x1c8kY\x9fG\x04@cD\x915Q\xac\x00@{\xc1M\xa9X\xcc\xfa?s\xafxG\xf6\xed\t@&\xcc\xa3\xd9 N\x0f@\xcak>\xccQ\x84\x0e@\xd2\x8cs\xc2\x07B\xf0?\x7f\xca\x11\xfb}\xec\x12@\xb6^O\x91U\xf6\x0b@", <numpy.flatiter object at 0x3db9050>, {'dtype': dtype('<f8')}) ... ok
test_multiarray.TestFromBuffer.test_ip_basic('\x03\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', <numpy.flatiter object at 0x3dbac80>, {'dtype': dtype('<i8')}) ... ok
test_multiarray.TestFromBuffer.test_ip_basic("ZB d%\xe8\xe7?\x00\x00\x00\x00\x00\x00\x00\x00$\x16\x16\xb2\xab\x89\x0b@\x00\x00\x00\x00\x00\x00\x00\x00\xd9\xfaQ\x84\xfb\xeb\x02@\x00\x00\x00\x00\x00\x00\x00\x00\xf6\xd8\xf4C\xf0\xab\x11@\x00\x00\x00\x00\x00\x00\x00\x00f\xe2\xbd\x86Oy\x04@\x00\x00\x00\x00\x00\x00\x00\x00\xae8\xcb\x8f\xca/\x00@\x00\x00\x00\x00\x00\x00\x00\x00,\xb6\xfd\xae\xfd\xc8\x0e@\x00\x00\x00\x00\x00\x00\x00\x00\x1dP\x1c0\r[\x06@\x00\x00\x00\x00\x00\x00\x00\x00\x86\xc8\xc0m\xeb\x8b\n@\x00\x00\x00\x00\x00\x00\x00\x00\xa2\xfa\x8e\xfdJ\xb3\xfc?\x00\x00\x00\x00\x00\x00\x00\x00\xa2\xe1\x89\xa4\xc2\xfa\x12@\x00\x00\x00\x00\x00\x00\x00\x00|!E'\xeer\n@\x00\x00\x00\x00\x00\x00\x00\x00\xcf\xd6GQ\xb1\xdd\x10@\x00\x00\x00\x00\x00\x00\x00\x00\x88\xbf\xf9\xcfM]\x0f@\x00\x00\x00\x00\x00\x00\x00\x00,\xf7h\xc3 \xc7\x12@\x00\x00\x00\x00\x00\x00\x00\x00\xd4C\x8bw\xf8\xe0\xff?\x00\x00\x00\x00\x00\x00\x00\x00\xe1\xbaH\tE\x98\xfb?\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xc4\xf7\xce\xd0'\xf9?\x00\x00\x00\x00\x00\x00\x00\x00xN\xab\xcc\x88s\xf5?\x00\x00\x00\x00\x00\x00\x00\x00\xac\x99\xc2\x1f\t\xc6\x12@\x00\x00\x00\x00\x00\x00\x00\x00=<\xfb4\xd5\xd6\r@\x00\x00\x00\x00\x00\x00\x00\x00?\x86:k\xe5\xae\x10@\x00\x00\x00\x00\x00\x00\x00\x00\xacr\xc6;\xb8Z\xf0?\x00\x00\x00\x00\x00\x00\x00\x00r\xb1>\xd4\xe5\x90\x07@\x00\x00\x00\x00\x00\x00\x00\x00\xa3^#8\xf8\xac\x00@\x00\x00\x00\x00\x00\x00\x00\x00F\xe5\x80:\xb9\xc7\xdf?\x00\x00\x00\x00\x00\x00\x00\x00$><c\x04\xcb\x01@\x00\x00\x00\x00\x00\x00\x00\x00J\x95\x82G\xb7\xe0\x0e@\x00\x00\x00\x00\x00\x00\x00\x00", <numpy.flatiter object at 0x3dbcd90>, {'dtype': dtype('<c16')}) ... ok
test_multiarray.TestFromBuffer.test_ip_basic('@\x0f\xb1\xb1A\xfb\xb1\x94@\x11\x11\xad!\x81\x8b\x0e@\x10c\x1a\xa2(F\xe2?\xf2\x95<R\xa9\xd7\x8e@\x01\xae\x11\x0e\xa3\xb0\xee?\xf3 Y-\xae\xef<?\xbe>Mj\x1ej@@\t\xe1u\x92E\xc0\xab?\xbf\x164\xb0\x0f|\xf0?\xe7}\r[\xdc9L@\x12\xd04\x00\xc0z\x9e@\n$\xc8\xa2\x99\n\t?\xe9\xabH+\x84\xb7Y@\tA\xe7\x16##%?\xfaW\x8f}\xcb\x8e\xbd?\xe6\n;tW\x92\xcd@\x00\x8c\xab\x9dy6\x92@\x04\x95\xf2:.,t?\xc4\xc24\xc0X>\\?\xc2\xdb[\xb9-Hx?\xc2pS\x96\x8f\x1e\x18?\xcf#\xa8"w\x8f(?\xe8\xa1h\x90N\xeb\xae?\xe7 \xd5\xbe\xa0\xd5\xb8@\x04%\x93\xc4\x91\xde\x1a@\x00@\x8b+\xfb_\xd0?\xe9.#l\r\xe5\x13?\xf5\xc4]\x08\xea\xda\xca', <numpy.flatiter object at 0x3dbeae0>, {'dtype': dtype('>f8')}) ... ok
test_multiarray.TestFromBuffer.test_ip_basic('\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x03', <numpy.flatiter object at 0x3dc0830>, {'dtype': dtype('>i8')}) ... ok
test_multiarray.TestFromBuffer.test_ip_basic('?\xde\xfe;S\xf3\x82\xf6\x00\x00\x00\x00\x00\x00\x00\x00@\x01\xa7\xe7\x17\x8a\xa9o\x00\x00\x00\x00\x00\x00\x00\x00?\xfbC\xd0\x01y\x1c8\x00\x00\x00\x00\x00\x00\x00\x00@\x00\xc2s\xd6\x9fVQ\x00\x00\x00\x00\x00\x00\x00\x00@\x13\xe8r\x1a=\x1c\x17\x00\x00\x00\x00\x00\x00\x00\x00@\x13:i\x147#_\x00\x00\x00\x00\x00\x00\x00\x00@\x0f(1|\x88J8\x00\x00\x00\x00\x00\x00\x00\x00@\t\xb1/\xc4v\xa8\xbd\x00\x00\x00\x00\x00\x00\x00\x00@\x05\xf6\x16\xfb\xb5L{\x00\x00\x00\x00\x00\x00\x00\x00@\x10\xa60\xfb\xdb\xbe\x88\x00\x00\x00\x00\x00\x00\x00\x00?\xe7\x99\x96X\xbb)D\x00\x00\x00\x00\x00\x00\x00\x00@\t_(Q\x93>X\x00\x00\x00\x00\x00\x00\x00\x00@\x03\xefa/Y8+\x00\x00\x00\x00\x00\x00\x00\x00?\xe6H\xa3\x1aP\r\xb8\x00\x00\x00\x00\x00\x00\x00\x00@\r<\x8fT+\xe8\x8c\x00\x00\x00\x00\x00\x00\x00\x00@\x02\x81#_\x12\xd8K\x00\x00\x00\x00\x00\x00\x00\x00@\x07\xd9\xb8\xe6T\x88\xd4\x00\x00\x00\x00\x00\x00\x00\x00@\x0eJa)i\x05\x82\x00\x00\x00\x00\x00\x00\x00\x00?\xce\xc1\t\n\xb4\xb18\x00\x00\x00\x00\x00\x00\x00\x00@\x02S\xc8\x90\x01^\xd6\x00\x00\x00\x00\x00\x00\x00\x00@\x04\xb8\x03M\x11`\xcc\x00\x00\x00\x00\x00\x00\x00\x00@\x11Y\xd5L\xe1\x92\x03\x00\x00\x00\x00\x00\x00\x00\x00@\x13\x82M\xc4\xf4\xbeA\x00\x00\x00\x00\x00\x00\x00\x00@\r\xd7Kh\x80$\xb3\x00\x00\x00\x00\x00\x00\x00\x00@\x0e\\\xdb\xe0[\xeb\x81\x00\x00\x00\x00\x00\x00\x00\x00?\xf6\xb5M\x84\xe69\x97\x00\x00\x00\x00\x00\x00\x00\x00@\x0e\x90\xf8= \xc3Y\x00\x00\x00\x00\x00\x00\x00\x00@\x0c\xdf+\xc3\xcfA\x8e\x00\x00\x00\x00\x00\x00\x00\x00', <numpy.flatiter object at 0x3dc2940>, {'dtype': dtype('>c16')}) ... ok
test_int (test_multiarray.TestHash) ... ok
test_multiarray.TestIO.test_ascii ... ok
test_multiarray.TestIO.test_binary ... ok
test_multiarray.TestIO.test_bool_fromstring ... ok
test_multiarray.TestIO.test_counted_string ... ok
test_multiarray.TestIO.test_counted_string_with_ws ... ok
test_multiarray.TestIO.test_dtype ... ok
test_multiarray.TestIO.test_dtype_bool ... ok
test_multiarray.TestIO.test_empty_files_binary ... ok
test_multiarray.TestIO.test_empty_files_text ... ok
test_multiarray.TestIO.test_file_position_after_fromfile ... ok
test_multiarray.TestIO.test_file_position_after_tofile ... ok
test_multiarray.TestIO.test_inf ... ok
test_multiarray.TestIO.test_locale ... ok
test_multiarray.TestIO.test_long_sep ... ok
test_multiarray.TestIO.test_malformed ... ok
test_multiarray.TestIO.test_nan ... ok
test_multiarray.TestIO.test_numbers ... ok
test_multiarray.TestIO.test_roundtrip_binary_str ... ok
test_multiarray.TestIO.test_roundtrip_file ... ok
test_multiarray.TestIO.test_roundtrip_filename ... ok
test_multiarray.TestIO.test_roundtrip_repr ... ok
test_multiarray.TestIO.test_roundtrip_str ... ok
test_multiarray.TestIO.test_string ... ok
test_multiarray.TestIO.test_string_with_ws ... ok
test_multiarray.TestIO.test_tofile_format ... ok
test_multiarray.TestIO.test_tofile_sep ... ok
test_inner_scalar_and_matrix_of_objects (test_multiarray.TestInner) ... ok
test_basic (test_multiarray.TestLexsort) ... ok
test_datetime (test_multiarray.TestLexsort) ... ok
test_mapiter (test_multiarray.TestMapIter) ... ok
test_mem_seteventhook (test_multiarray.TestMemEventHook) ... ok
test_argsort (test_multiarray.TestMethods) ... ok
test_copy (test_multiarray.TestMethods) ... ok
test_diagonal (test_multiarray.TestMethods) ... ok
test_diagonal_memleak (test_multiarray.TestMethods) ... ok
test_diagonal_view_notwriteable (test_multiarray.TestMethods) ... ok
test_dot (test_multiarray.TestMethods) ... ok
test_dot_override (test_multiarray.TestMethods) ... ok
test_flatten (test_multiarray.TestMethods) ... ok
test_partition (test_multiarray.TestMethods) ... ok
test_partition_cdtype (test_multiarray.TestMethods) ... ok
test_partition_iterative (test_multiarray.TestMethods) ... ok
test_partition_unicode_kind (test_multiarray.TestMethods) ... ok
test_ravel (test_multiarray.TestMethods) ... ok
test_searchsorted (test_multiarray.TestMethods) ... ok
test_searchsorted_unicode (test_multiarray.TestMethods) ... ok
test_searchsorted_with_sorter (test_multiarray.TestMethods) ... ok
test_sort (test_multiarray.TestMethods) ... ok
test_sort_order (test_multiarray.TestMethods) ... ok
test_sort_unicode_kind (test_multiarray.TestMethods) ... ok
test_test_round (test_multiarray.TestMethods) ... ok
test_transpose (test_multiarray.TestMethods) ... ok
test_axis (test_multiarray.TestMinMax) ... ok
test_scalar (test_multiarray.TestMinMax) ... ok
test_multiarray.TestMinScalarType.test_object ... ok
test_multiarray.TestMinScalarType.test_usigned_int ... ok
test_multiarray.TestMinScalarType.test_usigned_longlong ... ok
test_multiarray.TestMinScalarType.test_usigned_short ... ok
test_multiarray.TestMinScalarType.test_usigned_shortshort ... ok
test_circular (test_multiarray.TestNeighborhoodIter) ... ok
test_circular_object (test_multiarray.TestNeighborhoodIter) ... ok
test_mirror (test_multiarray.TestNeighborhoodIter) ... ok
test_mirror2d (test_multiarray.TestNeighborhoodIter) ... ok
test_mirror2d_object (test_multiarray.TestNeighborhoodIter) ... ok
test_mirror_object (test_multiarray.TestNeighborhoodIter) ... ok
test_simple2d (test_multiarray.TestNeighborhoodIter) ... ok
test_simple2d_object (test_multiarray.TestNeighborhoodIter) ... ok
test_simple_float (test_multiarray.TestNeighborhoodIter) ... ok
test_simple_object (test_multiarray.TestNeighborhoodIter) ... ok
test_multiarray.TestNewBufferProtocol.test_export_discontiguous ... ok
test_multiarray.TestNewBufferProtocol.test_export_endian ... ok
test_multiarray.TestNewBufferProtocol.test_export_flags ... ok
test_multiarray.TestNewBufferProtocol.test_export_record ... ok
test_multiarray.TestNewBufferProtocol.test_export_simple_1d ... ok
test_multiarray.TestNewBufferProtocol.test_export_simple_nd ... ok
test_multiarray.TestNewBufferProtocol.test_export_subarray ... ok
test_multiarray.TestNewBufferProtocol.test_padded_struct_array ... ok
test_multiarray.TestNewBufferProtocol.test_padding ... ok
test_multiarray.TestNewBufferProtocol.test_reference_leak ... ok
test_multiarray.TestNewBufferProtocol.test_roundtrip ... ok
test_multiarray.TestNewBufferProtocol.test_roundtrip_half ... ok
test_multiarray.TestNewBufferProtocol.test_roundtrip_scalar ... ok
test_multiarray.TestNewBufferProtocol.test_roundtrip_single_types ... ok
test_basic (test_multiarray.TestNewaxis) ... ok
test_multiarray.TestPEP3118Dtype.test_byteorder_inside_struct ... ok
test_multiarray.TestPEP3118Dtype.test_intra_padding ... ok
test_multiarray.TestPEP3118Dtype.test_native_padding ... ok
test_multiarray.TestPEP3118Dtype.test_native_padding_2 ... ok
test_multiarray.TestPEP3118Dtype.test_native_padding_3 ... ok
test_multiarray.TestPEP3118Dtype.test_padding_with_array_inside_struct ... ok
test_multiarray.TestPEP3118Dtype.test_trailing_padding ... ok
test_roundtrip (test_multiarray.TestPickling) ... ok
test_subarray_int_shape (test_multiarray.TestPickling) ... ok
test_version0_float32 (test_multiarray.TestPickling) ... ok
test_version0_int8 (test_multiarray.TestPickling) ... ok
test_version0_object (test_multiarray.TestPickling) ... ok
test_version1_float32 (test_multiarray.TestPickling) ... ok
test_version1_int8 (test_multiarray.TestPickling) ... ok
test_version1_object (test_multiarray.TestPickling) ... ok
test_multiarray.TestPutmask.test_ip_byteorder('>i4',) ... ok
test_multiarray.TestPutmask.test_ip_byteorder('<i4',) ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.125 , 12.203125 , 87.875 , 92.4375 , ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.10904694, 12.20102215, 87.87507629, 92.44171906, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.10904549, 12.20102199, 87.87507423, 92.44171644, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.109045, 12.201022, 87.875074, 92.441716, 98.357339, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.10904694+0.j, 12.20102215+0.j, 87.87507629+0.j, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.10904549+0.j, 12.20102199+0.j, 87.87507423+0.j, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.109045+0.0j, 12.201022+0.0j, 87.875074+0.0j, 92.441716+0.0j, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ True, True, True, True, True, True, True, True, True, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.125 , 12.203125 , 87.875 , 92.4375 , ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.10904694, 12.20102215, 87.87507629, 92.44171906, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.10904549, 12.20102199, 87.87507423, 92.44171644, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.109045, 12.201022, 87.875074, 92.441716, 98.357339, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.10904694+0.j, 12.20102215+0.j, 87.87507629+0.j, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.10904549+0.j, 12.20102199+0.j, 87.87507423+0.j, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.109045+0.0j, 12.201022+0.0j, 87.875074+0.0j, 92.441716+0.0j, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ True, True, True, True, True, True, True, True, True, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.125 , 12.203125 , 87.875 , 92.4375 , ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.10904694, 12.20102215, 87.87507629, 92.44171906, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.10904549, 12.20102199, 87.87507423, 92.44171644, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.109045, 12.201022, 87.875074, 92.441716, 98.357339, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([99, 12, 87, 92, 98, 31, 89, 67, 54, 49, 50, 2, 80, 65, 42, 83, 52, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.10904694+0.j, 12.20102215+0.j, 87.87507629+0.j, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.10904549+0.j, 12.20102199+0.j, 87.87507423+0.j, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ 99.109045+0.0j, 12.201022+0.0j, 87.875074+0.0j, 92.441716+0.0j, ... ok
test_multiarray.TestPutmask.test_ip_types(array([ True, True, True, True, True, True, True, True, True, ... ok
test_multiarray.TestPutmask.test_mask_size ... ok
test_multiarray.TestPutmask.test_masked_array ... ok
test_multiarray.TestPutmask.test_record_array ... ok
test_field_names (test_multiarray.TestRecord) ... SKIP: non ascii unicode field indexing skipped; raises segfault on python 2.x
test_field_names_deprecation (test_multiarray.TestRecord) ... ok
test_field_rename (test_multiarray.TestRecord) ... ok
test_record_hash (test_multiarray.TestRecord) ... ok
test_record_no_hash (test_multiarray.TestRecord) ... ok
test_unicode_field_names (test_multiarray.TestRecord) ... ok
test_unicode_field_titles (test_multiarray.TestRecord) ... ok
test_basic (test_multiarray.TestResize) ... ok
test_check_reference (test_multiarray.TestResize) ... ok
test_freeform_shape (test_multiarray.TestResize) ... ok
test_int_shape (test_multiarray.TestResize) ... ok
test_invalid_arguements (test_multiarray.TestResize) ... ok
test_none_shape (test_multiarray.TestResize) ... ok
test_zeros_appended (test_multiarray.TestResize) ... ok
test_ellipsis_subscript (test_multiarray.TestScalarIndexing) ... ok
test_empty_subscript (test_multiarray.TestScalarIndexing) ... ok
test_invalid_newaxis (test_multiarray.TestScalarIndexing) ... ok
test_invalid_subscript (test_multiarray.TestScalarIndexing) ... ok
test_invalid_subscript_assignment (test_multiarray.TestScalarIndexing) ... ok
test_newaxis (test_multiarray.TestScalarIndexing) ... ok
test_overlapping_assignment (test_multiarray.TestScalarIndexing) ... ok
test_simple_circular (test_multiarray.TestStackedNeighborhoodIter) ... ok
test_simple_const (test_multiarray.TestStackedNeighborhoodIter) ... ok
test_simple_mirror (test_multiarray.TestStackedNeighborhoodIter) ... ok
test_simple_strict_within (test_multiarray.TestStackedNeighborhoodIter) ... ok
test_ddof (test_multiarray.TestStats) ... ok
test_ddof_too_big (test_multiarray.TestStats) ... ok
test_dtype_from_dtype (test_multiarray.TestStats) ... ok
test_dtype_from_input (test_multiarray.TestStats) ... ok
test_empty (test_multiarray.TestStats) ... ok
test_keepdims (test_multiarray.TestStats) ... ok
test_mean_values (test_multiarray.TestStats) ... ok
test_out (test_multiarray.TestStats) ... ok
test_std_values (test_multiarray.TestStats) ... ok
test_subclass (test_multiarray.TestStats) ... ok
test_var_values (test_multiarray.TestStats) ... ok
test_mixed (test_multiarray.TestStringCompare) ... ok
test_string (test_multiarray.TestStringCompare) ... ok
test_unicode (test_multiarray.TestStringCompare) ... ok
test_subarray_comparison (test_multiarray.TestStructured) ... ok
test_subarray_field_access (test_multiarray.TestStructured) ... ok
test_test_zero_rank (test_multiarray.TestSubscripting) ... ok
test_1d (test_multiarray.TestSummarization) ... ok
test_2d (test_multiarray.TestSummarization) ... ok
test_multiarray.TestTake.test_clip ... ok
test_multiarray.TestTake.test_ip_byteorder('>i4',) ... ok
test_multiarray.TestTake.test_ip_byteorder('<i4',) ... ok
test_multiarray.TestTake.test_ip_types(array([[[79, 93, 90, 5], ... ok
test_multiarray.TestTake.test_ip_types(array([[[79, 93, 90, 5], ... ok
test_multiarray.TestTake.test_ip_types(array([[[79, 93, 90, 5], ... ok
test_multiarray.TestTake.test_ip_types(array([[[79, 93, 90, 5], ... ok
test_multiarray.TestTake.test_ip_types(array([[[ 79.1875 , 93.1875 , 90.125 , 5.75390625], ... ok
test_multiarray.TestTake.test_ip_types(array([[[ 79.18527985, 93.19563293, 90.1289978 , 5.7534976 ], ... ok
test_multiarray.TestTake.test_ip_types(array([[[ 79.18527837, 93.19563165, 90.12900156, 5.75349758], ... ok
test_multiarray.TestTake.test_ip_types(array([[[ 79.185278, 93.195632, 90.129002, 5.7534976], ... ok
test_multiarray.TestTake.test_ip_types(array([[[79, 93, 90, 5], ... ok
test_multiarray.TestTake.test_ip_types(array([[[79, 93, 90, 5], ... ok
test_multiarray.TestTake.test_ip_types(array([[[79, 93, 90, 5], ... ok
test_multiarray.TestTake.test_ip_types(array([[[79, 93, 90, 5], ... ok
test_multiarray.TestTake.test_ip_types(array([[[ 79.18527985+0.j, 93.19563293+0.j, 90.12899780+0.j, ... ok
test_multiarray.TestTake.test_ip_types(array([[[ 79.18527837+0.j, 93.19563165+0.j, 90.12900156+0.j, ... ok
test_multiarray.TestTake.test_ip_types(array([[[ 79.185278+0.0j, 93.195632+0.0j, 90.129002+0.0j, 5.7534976+0.0j], ... ok
test_multiarray.TestTake.test_ip_types(array([[[ True, True, True, True], ... ok
test_multiarray.TestTake.test_raise ... ok
test_multiarray.TestTake.test_record_array ... ok
test_multiarray.TestTake.test_wrap ... ok
test_basic (test_multiarray.TestView) ... ok
test_multiarray.TestWarnings.test_complex_warning ... ok
test_basic (test_multiarray.TestWhere) ... ok
test_dtype_mix (test_multiarray.TestWhere) ... ok
test_error (test_multiarray.TestWhere) ... ok
test_exotic (test_multiarray.TestWhere) ... ok
test_foreign (test_multiarray.TestWhere) ... ok
test_ndim (test_multiarray.TestWhere) ... ok
test_constructor (test_multiarray.TestZeroRank) ... ok
test_ellipsis_subscript (test_multiarray.TestZeroRank) ... ok
test_ellipsis_subscript_assignment (test_multiarray.TestZeroRank) ... ok
test_empty_subscript (test_multiarray.TestZeroRank) ... ok
test_empty_subscript_assignment (test_multiarray.TestZeroRank) ... ok
test_invalid_newaxis (test_multiarray.TestZeroRank) ... ok
test_invalid_subscript (test_multiarray.TestZeroRank) ... ok
test_invalid_subscript_assignment (test_multiarray.TestZeroRank) ... ok
test_newaxis (test_multiarray.TestZeroRank) ... ok
test_output (test_multiarray.TestZeroRank) ... ok
test_multiarray.test_array_interface ... ok
test_multiarray.test_flat_element_deletion ... ok
test_multiarray.test_scalar_element_deletion ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
Test automatically generated assignments which overlap in memory. ... ok
test_nditer.test_iter_refcount ... ok
test_nditer.test_iter_best_order ... ok
test_nditer.test_iter_c_order ... ok
test_nditer.test_iter_f_order ... ok
test_nditer.test_iter_c_or_f_order ... ok
test_nditer.test_iter_best_order_multi_index_1d ... ok
test_nditer.test_iter_best_order_multi_index_2d ... ok
test_nditer.test_iter_best_order_multi_index_3d ... ok
test_nditer.test_iter_best_order_c_index_1d ... ok
test_nditer.test_iter_best_order_c_index_2d ... ok
test_nditer.test_iter_best_order_c_index_3d ... ok
test_nditer.test_iter_best_order_f_index_1d ... ok
test_nditer.test_iter_best_order_f_index_2d ... ok
test_nditer.test_iter_best_order_f_index_3d ... ok
test_nditer.test_iter_no_inner_full_coalesce ... ok
test_nditer.test_iter_no_inner_dim_coalescing ... ok
test_nditer.test_iter_dim_coalescing ... ok
test_nditer.test_iter_broadcasting ... ok
test_nditer.test_iter_itershape ... ok
test_nditer.test_iter_broadcasting_errors ... ok
test_nditer.test_iter_flags_errors ... ok
test_nditer.test_iter_slice ... ok
test_nditer.test_iter_nbo_align_contig ... ok
test_nditer.test_iter_array_cast ... ok
test_nditer.test_iter_array_cast_errors ... ok
test_nditer.test_iter_scalar_cast ... ok
test_nditer.test_iter_scalar_cast_errors ... ok
test_nditer.test_iter_object_arrays_basic ... ok
test_nditer.test_iter_object_arrays_conversions ... ok
test_nditer.test_iter_common_dtype ... ok
test_nditer.test_iter_op_axes ... ok
test_nditer.test_iter_op_axes_errors ... ok
test_nditer.test_iter_copy ... ok
test_nditer.test_iter_allocate_output_simple ... ok
test_nditer.test_iter_allocate_output_buffered_readwrite ... ok
test_nditer.test_iter_allocate_output_itorder ... ok
test_nditer.test_iter_allocate_output_opaxes ... ok
test_nditer.test_iter_allocate_output_types_promotion ... ok
test_nditer.test_iter_allocate_output_types_byte_order ... ok
test_nditer.test_iter_allocate_output_types_scalar ... ok
test_nditer.test_iter_allocate_output_subtype ... ok
test_nditer.test_iter_allocate_output_errors ... ok
test_nditer.test_iter_remove_axis ... ok
test_nditer.test_iter_remove_multi_index_inner_loop ... ok
test_nditer.test_iter_iterindex ... ok
test_nditer.test_iter_iterrange ... ok
test_nditer.test_iter_buffering ... ok
test_nditer.test_iter_write_buffering ... ok
test_nditer.test_iter_buffering_delayed_alloc ... ok
test_nditer.test_iter_buffered_cast_simple ... ok
test_nditer.test_iter_buffered_cast_byteswapped ... ok
test_nditer.test_iter_buffered_cast_byteswapped_complex ... ok
test_nditer.test_iter_buffered_cast_structured_type ... ok
test_nditer.test_iter_buffered_cast_subarray ... ok
test_nditer.test_iter_buffering_badwriteback ... ok
test_nditer.test_iter_buffering_string ... ok
test_nditer.test_iter_buffering_growinner ... ok
test_nditer.test_iter_no_broadcast ... ok
test_nditer.test_iter_nested_iters_basic ... ok
test_nditer.test_iter_nested_iters_reorder ... ok
test_nditer.test_iter_nested_iters_flip_axes ... ok
test_nditer.test_iter_nested_iters_broadcast ... ok
test_nditer.test_iter_nested_iters_dtype_copy ... ok
test_nditer.test_iter_nested_iters_dtype_buffered ... ok
test_nditer.test_iter_reduction_error ... ok
test_nditer.test_iter_reduction ... ok
test_nditer.test_iter_buffering_reduction ... ok
test_nditer.test_iter_buffering_reduction_reuse_reduce_loops ... ok
test_nditer.test_iter_writemasked_badinput ... ok
test_nditer.test_iter_writemasked ... ok
test_nditer.test_iter_non_writable_attribute_deletion ... ok
test_nditer.test_iter_writable_attribute_deletion ... ok
test_nditer.test_iter_element_deletion ... ok
test_nditer.test_iter_allocated_array_dtypes ... ok
test_nditer.test_0d_iter ... ok
test_nditer.test_0d_nested_iter ... ok
test_nditer.test_iter_too_large ... ok
test_nditer.test_iter_too_large_with_multiindex ... ok
test_numeric.TestAllclose.test_ip_allclose([1, 0], [1, 0]) ... ok
test_numeric.TestAllclose.test_ip_allclose([1e-08], [0]) ... ok
test_numeric.TestAllclose.test_ip_allclose([1], [1.00001001]) ... ok
test_numeric.TestAllclose.test_ip_allclose(array([ 100, 1000]), array([ 100.001, 1000.01 ])) ... ok
test_numeric.TestAllclose.test_ip_allclose(array([ 100, 1000]), array([ 100.00100002, 1000.01000002])) ... ok
test_numeric.TestAllclose.test_ip_allclose(array([[[ 0, 1, 2, 3, 4], ... ok
test_numeric.TestAllclose.test_ip_allclose(inf, inf) ... ok
test_numeric.TestAllclose.test_ip_allclose(inf, [inf]) ... ok
test_numeric.TestAllclose.test_ip_not_allclose([inf, 0], [1, inf]) ... ok
test_numeric.TestAllclose.test_ip_not_allclose([inf, 0], [1, 0]) ... ok
test_numeric.TestAllclose.test_ip_not_allclose([inf, inf], [1, inf]) ... ok
test_numeric.TestAllclose.test_ip_not_allclose([inf, inf], [1, 0]) ... ok
test_numeric.TestAllclose.test_ip_not_allclose([-inf, 0], [inf, 0]) ... ok
test_numeric.TestAllclose.test_ip_not_allclose([nan, 0], [nan, 0]) ... ok
test_numeric.TestAllclose.test_ip_not_allclose([2e-08], [0]) ... ok
test_numeric.TestAllclose.test_ip_not_allclose([1], [1.0000100200000002]) ... ok
test_numeric.TestAllclose.test_ip_not_allclose(array([[[ 0, 1, 2, 3, 4], ... ok
test_numeric.TestAllclose.test_ip_not_allclose(array([ inf, 1.]), array([ 0., inf])) ... ok
test_numeric.TestAllclose.test_min_int ... ok
test_numeric.TestAllclose.test_no_parameter_modification ... ok
test_numeric.TestArgwhere.test_2D ... ok
test_numeric.TestArgwhere.test_list ... ok
test_array_equal (test_numeric.TestArrayComparisons) ... ok
test_array_equiv (test_numeric.TestArrayComparisons) ... ok
test_base3 (test_numeric.TestBaseRepr) ... ok
test_negative (test_numeric.TestBaseRepr) ... ok
test_positive (test_numeric.TestBaseRepr) ... ok
test_large (test_numeric.TestBinaryRepr) ... ok
test_negative (test_numeric.TestBinaryRepr) ... ok
test_zero (test_numeric.TestBinaryRepr) ... ok
test_all_any (test_numeric.TestBoolArray) ... ok
test_logical_and_or_xor (test_numeric.TestBoolArray) ... ok
test_logical_not_abs (test_numeric.TestBoolArray) ... ok
test_double (test_numeric.TestBoolCmp) ... ok
test_float (test_numeric.TestBoolCmp) ... ok
test_bitwise_and (test_numeric.TestBoolScalar) ... ok
test_bitwise_or (test_numeric.TestBoolScalar) ... ok
test_bitwise_xor (test_numeric.TestBoolScalar) ... ok
test_logical (test_numeric.TestBoolScalar) ... ok
test_array_double (test_numeric.TestClip) ... ok
test_clip_func_takes_out (test_numeric.TestClip) ... ok
test_clip_inplace_array (test_numeric.TestClip) ... ok
test_clip_inplace_simple (test_numeric.TestClip) ... ok
test_clip_non_contig (test_numeric.TestClip) ... ok
test_clip_with_out_array_int32 (test_numeric.TestClip) ... ok
test_clip_with_out_array_outint32 (test_numeric.TestClip) ... ok
test_clip_with_out_simple (test_numeric.TestClip) ... ok
test_clip_with_out_simple2 (test_numeric.TestClip) ... ok
test_clip_with_out_simple_int32 (test_numeric.TestClip) ... ok
test_noncontig_inplace (test_numeric.TestClip) ... ok
test_simple_complex (test_numeric.TestClip) ... ok
test_simple_double (test_numeric.TestClip) ... ok
test_simple_inplace_01 (test_numeric.TestClip) ... ok
test_simple_inplace_02 (test_numeric.TestClip) ... ok
test_simple_int (test_numeric.TestClip) ... ok
test_simple_int32_inout (test_numeric.TestClip) ... ok
test_simple_int32_out (test_numeric.TestClip) ... ok
test_simple_int64_inout (test_numeric.TestClip) ... ok
test_simple_int64_out (test_numeric.TestClip) ... ok
test_simple_nonnative (test_numeric.TestClip) ... ok
test_simple_out (test_numeric.TestClip) ... ok
test_type_cast_01 (test_numeric.TestClip) ... ok
test_type_cast_02 (test_numeric.TestClip) ... ok
test_type_cast_03 (test_numeric.TestClip) ... ok
test_type_cast_04 (test_numeric.TestClip) ... ok
test_type_cast_05 (test_numeric.TestClip) ... ok
test_type_cast_06 (test_numeric.TestClip) ... ok
test_type_cast_07 (test_numeric.TestClip) ... ok
test_type_cast_08 (test_numeric.TestClip) ... ok
test_type_cast_09 (test_numeric.TestClip) ... ok
test_type_cast_10 (test_numeric.TestClip) ... ok
test_type_cast_11 (test_numeric.TestClip) ... ok
test_type_cast_12 (test_numeric.TestClip) ... ok
test_complex (test_numeric.TestCorrelate) ... ok
test_float (test_numeric.TestCorrelate) ... ok
test_object (test_numeric.TestCorrelate) ... ok
test_complex (test_numeric.TestCorrelateNew) ... ok
test_float (test_numeric.TestCorrelateNew) ... ok
test_object (test_numeric.TestCorrelateNew) ... ok
test_empty (test_numeric.TestCreationFuncs) ... ok
test_filled (test_numeric.TestCreationFuncs) ... ok
test_for_reference_leak (test_numeric.TestCreationFuncs) ... ok
test_ones (test_numeric.TestCreationFuncs) ... ok
test_zeros (test_numeric.TestCreationFuncs) ... ok
test_2x2 (test_numeric.TestCross) ... ok
test_2x3 (test_numeric.TestCross) ... ok
test_3x3 (test_numeric.TestCross) ... ok
test_broadcasting (test_numeric.TestCross) ... ok
test_all (test_numeric.TestDot) ... ok
test_columnvect1 (test_numeric.TestDot) ... ok
test_columnvect2 (test_numeric.TestDot) ... ok
test_matmat (test_numeric.TestDot) ... ok
test_matvec (test_numeric.TestDot) ... ok
test_matvec2 (test_numeric.TestDot) ... ok
test_vecmat (test_numeric.TestDot) ... ok
test_vecmat2 (test_numeric.TestDot) ... ok
test_vecmat3 (test_numeric.TestDot) ... ok
test_vecobject (test_numeric.TestDot) ... ok
test_vecscalar (test_numeric.TestDot) ... ok
test_vecscalar2 (test_numeric.TestDot) ... ok
test_vecvecinner (test_numeric.TestDot) ... ok
test_vecvecouter (test_numeric.TestDot) ... ok
test_floating_exceptions (test_numeric.TestFloatExceptions) ... KNOWNFAIL: See ticket #2350
test_warnings (test_numeric.TestFloatExceptions) ... ok
test_2592 (test_numeric.TestFromiter) ... ok
test_2592_edge (test_numeric.TestFromiter) ... ok
test_lengths (test_numeric.TestFromiter) ... ok
test_types (test_numeric.TestFromiter) ... ok
test_values (test_numeric.TestFromiter) ... ok
test_boolean (test_numeric.TestIndex) ... ok
test_boolean_edgecase (test_numeric.TestIndex) ... ok
test_numeric.TestIsclose.test_equal_nan ... ok
test_numeric.TestIsclose.test_ip_all_isclose([1, 0], [1, 0]) ... ok
test_numeric.TestIsclose.test_ip_all_isclose([1e-08], [0]) ... ok
test_numeric.TestIsclose.test_ip_all_isclose([1], [1.00001001]) ... ok
test_numeric.TestIsclose.test_ip_all_isclose(array([ 100, 1000]), array([ 100.001, 1000.01 ])) ... ok
test_numeric.TestIsclose.test_ip_all_isclose(array([ 100, 1000]), array([ 100.00100001, 1000.01000001])) ... ok
test_numeric.TestIsclose.test_ip_all_isclose(array([[[ 0, 1, 2, 3, 4], ... ok
test_numeric.TestIsclose.test_ip_all_isclose(inf, inf) ... ok
test_numeric.TestIsclose.test_ip_all_isclose(inf, [inf]) ... ok
test_numeric.TestIsclose.test_ip_all_isclose([inf, -inf], [inf, -inf]) ... ok
test_numeric.TestIsclose.test_ip_isclose(array([ True, False], dtype=bool), [True, False]) ... ok
test_numeric.TestIsclose.test_ip_isclose(array([ True, False, False], dtype=bool), [True, False, False]) ... ok
test_numeric.TestIsclose.test_ip_isclose(array([ True, True, False], dtype=bool), [True, True, False]) ... ok
test_numeric.TestIsclose.test_ip_isclose(array([False, False, False], dtype=bool), [False, False, False]) ... ok
test_numeric.TestIsclose.test_ip_isclose(array([ True, False, False, False], dtype=bool), [True, False, False, False]) ... ok
test_numeric.TestIsclose.test_ip_isclose(array([ True, False, False, False], dtype=bool), [True, False, False, False]) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose([1, 0], [1, 0]) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose([1e-08], [0]) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose([1], [1.00001001]) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose(array([ 100, 1000]), array([ 100.001, 1000.01 ])) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose(array([ 100, 1000]), array([ 100.00100001, 1000.01000001])) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose(array([[[ 0, 1, 2, 3, 4], ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose(inf, inf) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose(inf, [inf]) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose([inf, -inf], [inf, -inf]) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose([inf, 0], [1, inf]) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose([inf, -inf], [1, 0]) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose([inf, inf], [1, -inf]) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose([inf, inf], [1, 0]) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose([nan, 0], [nan, -inf]) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose([2e-08], [0]) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose([1], [1.0000100200000002]) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose(array([[[ 0, 1, 2, 3, 4], ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose(array([ inf, 1.]), array([ 0., inf])) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose([inf, 0], [inf, 2e-08]) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose([1e-08, 1, 1000020.0000000099], [0, nan, 1000000.0]) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose(array([0, 1, 2]), [0, 1, 2.1]) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose(nan, [nan, nan, nan]) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose([0], [1e-08, inf, -inf, nan]) ... ok
test_numeric.TestIsclose.test_ip_isclose_allclose(0, [1e-08, inf, -inf, nan]) ... ok
test_numeric.TestIsclose.test_ip_none_isclose([inf, 0], [1, inf]) ... ok
test_numeric.TestIsclose.test_ip_none_isclose([inf, -inf], [1, 0]) ... ok
test_numeric.TestIsclose.test_ip_none_isclose([inf, inf], [1, -inf]) ... ok
test_numeric.TestIsclose.test_ip_none_isclose([inf, inf], [1, 0]) ... ok
test_numeric.TestIsclose.test_ip_none_isclose([nan, 0], [nan, -inf]) ... ok
test_numeric.TestIsclose.test_ip_none_isclose([2e-08], [0]) ... ok
test_numeric.TestIsclose.test_ip_none_isclose([1], [1.0000100200000002]) ... ok
test_numeric.TestIsclose.test_ip_none_isclose(array([[[ 0, 1, 2, 3, 4], ... ok
test_numeric.TestIsclose.test_ip_none_isclose(array([ inf, 1.]), array([ 0., inf])) ... ok
test_numeric.TestIsclose.test_masked_arrays ... ok
test_numeric.TestIsclose.test_no_parameter_modification ... ok
test_numeric.TestIsclose.test_scalar_return ... ok
test_empty_like (test_numeric.TestLikeFuncs) ... ok
test_filled_like (test_numeric.TestLikeFuncs) ... ok
test_ones_like (test_numeric.TestLikeFuncs) ... ok
test_zeros_like (test_numeric.TestLikeFuncs) ... ok
test_cumproduct (test_numeric.TestNonarrayArgs) ... ok
test_mean (test_numeric.TestNonarrayArgs) ... ok
test_size (test_numeric.TestNonarrayArgs) ... ok
test_squeeze (test_numeric.TestNonarrayArgs) ... ok
test_std (test_numeric.TestNonarrayArgs) ... ok
test_var (test_numeric.TestNonarrayArgs) ... ok
test_nonzero_onedim (test_numeric.TestNonzero) ... ok
test_nonzero_trivial (test_numeric.TestNonzero) ... ok
test_nonzero_twodim (test_numeric.TestNonzero) ... ok
test_sparse (test_numeric.TestNonzero) ... ok
test_copies (test_numeric.TestResize) ... ok
test_zeroresize (test_numeric.TestResize) ... ok
test_roll1d (test_numeric.TestRoll) ... ok
test_roll2d (test_numeric.TestRoll) ... ok
test_roll_empty (test_numeric.TestRoll) ... ok
test_default (test_numeric.TestSeterr) ... ok
test_divide_err (test_numeric.TestSeterr) ... ok
test_errobj (test_numeric.TestSeterr) ... ok
test_errobj_noerrmask (test_numeric.TestSeterr) ... ok
test_set (test_numeric.TestSeterr) ... ok
test_basic (test_numeric.TestStdVar) ... ok
test_ddof1 (test_numeric.TestStdVar) ... ok
test_ddof2 (test_numeric.TestStdVar) ... ok
test_scalars (test_numeric.TestStdVar) ... ok
test_basic (test_numeric.TestStdVarComplex) ... ok
test_scalars (test_numeric.TestStdVarComplex) ... ok
test_numeric.TestStringFunction.test_set_string_function ... ok
test_can_cast (test_numeric.TestTypes) ... ok
test_coercion (test_numeric.TestTypes) ... ok
test_promote_types_endian (test_numeric.TestTypes) ... ok
test_promote_types_strings (test_numeric.TestTypes) ... ok
test_result_type (test_numeric.TestTypes) ... ok
test_numeric.test_outer_out_param ... ok
test_scalar_loses1 (test_numerictypes.TestCommonType) ... ok
test_scalar_loses2 (test_numerictypes.TestCommonType) ... ok
test_scalar_wins (test_numerictypes.TestCommonType) ... ok
test_scalar_wins2 (test_numerictypes.TestCommonType) ... ok
test_scalar_wins3 (test_numerictypes.TestCommonType) ... ok
test_assign (test_numerictypes.TestEmptyField) ... ok
test_no_tuple (test_numerictypes.TestMultipleFields) ... ok
test_return (test_numerictypes.TestMultipleFields) ... ok
Check creation from list of list of tuples ... ok
Check creation from list of tuples ... ok
Check creation from tuples ... ok
Check creation from list of list of tuples ... ok
Check creation from list of tuples ... ok
Check creation from tuples ... ok
Check creation from list of list of tuples ... ok
Check creation from list of tuples ... ok
Check creation from tuples ... ok
Check creation from list of list of tuples ... ok
Check creation from list of tuples ... ok
Check creation from tuples ... ok
Check creation of 0-dimensional objects ... ok
Check creation of multi-dimensional objects ... ok
Check creation of single-dimensional objects ... ok
Check creation of 0-dimensional objects ... ok
Check creation of multi-dimensional objects ... ok
Check creation of single-dimensional objects ... ok
Check reading the top fields of a nested array ... ok
Check reading the nested fields of a nested array (1st level) ... ok
Check access nested descriptors of a nested array (1st level) ... ok
Check reading the nested fields of a nested array (2nd level) ... ok
Check access nested descriptors of a nested array (2nd level) ... ok
Check reading the top fields of a nested array ... ok
Check reading the nested fields of a nested array (1st level) ... ok
Check access nested descriptors of a nested array (1st level) ... ok
Check reading the nested fields of a nested array (2nd level) ... ok
Check access nested descriptors of a nested array (2nd level) ... ok
test_access_fields (test_numerictypes.test_read_values_plain_multiple) ... ok
test_access_fields (test_numerictypes.test_read_values_plain_single) ... ok
Check formatting. ... ok
Check formatting. ... ok
Check formatting. ... ok
Check formatting of nan & inf. ... ok
Check formatting of nan & inf. ... ok
Check formatting of nan & inf. ... ok
Check formatting of complex types. ... ok
Check formatting of complex types. ... ok
Check formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check inf/nan formatting of complex types. ... ok
Check formatting when using print ... ok
Check formatting when using print ... ok
Check formatting when using print ... ok
Check formatting when using print ... ok
Check formatting when using print ... ok
Check formatting when using print ... ok
Test the str.format method with NumPy scalar types ... ok
test_print.test_locale_single ... ok
test_print.test_locale_double ... ok
test_print.test_locale_longdouble ... ok
test_fromrecords (test_records.TestFromrecords) ... ok
test_fromrecords_with_explicit_dtype (test_records.TestFromrecords) ... ok
test_method_array (test_records.TestFromrecords) ... ok
test_method_array2 (test_records.TestFromrecords) ... ok
test_recarray_conflict_fields (test_records.TestFromrecords) ... ok
test_recarray_from_names (test_records.TestFromrecords) ... ok
test_recarray_from_obj (test_records.TestFromrecords) ... ok
test_recarray_from_repr (test_records.TestFromrecords) ... ok
test_recarray_fromarrays (test_records.TestFromrecords) ... ok
test_recarray_fromfile (test_records.TestFromrecords) ... ok
test_recarray_slices (test_records.TestFromrecords) ... ok
test_assignment1 (test_records.TestRecord) ... ok
test_assignment2 (test_records.TestRecord) ... ok
test_invalid_assignment (test_records.TestRecord) ... ok
Ticket #1431. ... ok
test_pickle_1 (test_records.TestRecord) ... ok
test_pickle_2 (test_records.TestRecord) ... ok
test_records.test_find_duplicate ... ok
test_0d_string_scalar (test_regression.TestRegression) ... ok
Ticket #143 ... ok
Check that alignment flag is updated on stride setting ... ok
test_any_float (test_regression.TestRegression) ... ok
Ticket #111 ... ok
Ticket #616 ... ok
Ticket #119 ... ok
Ticket #546 ... ok
Ticket #516 ... ok
Ticket #1078: segfaults when creating an array with a sequence of 0d ... ok
Ticket #1081: weird array with strange input... ... ok
Make sure optimization is not called in this case. ... ok
Ticket #947. ... ok
Ticket #840 - order should be an invalid keyword. ... ok
test_array_scalar_contiguous (test_regression.TestRegression) ... ok
test_array_side_effect (test_regression.TestRegression) ... ok
Ticket #501 ... ok
Ticket #1080. ... ok
Check that nothing is done when order='F' and array C/F-contiguous ... ok
test_assign_from_sequence_error (test_regression.TestRegression) ... ok
test_assign_obj_listoflists (test_regression.TestRegression) ... ok
Ticket #788, changeset r5155 ... ok
Ticket #791 ... ok
Ticket #151 ... ok
test_binary_repr_0_width (test_regression.TestRegression) ... ok
Ticket #950 ... ok
Ticket #60 ... ok
test_bool_indexing_invalid_nr_elements (test_regression.TestRegression) ... ok
test_bool_subscript_crash (test_regression.TestRegression) ... ok
Ticket #194 ... ok
test_buffer_hashlib (test_regression.TestRegression) ... ok
Ticket #1259 and gh-441 ... ok
test_char_array_creation (test_regression.TestRegression) ... ok
Ticket #50 ... ok
Ticket #246 ... ok
Ticket #222 ... ok
test_complex64_alignment (test_regression.TestRegression) ... ok
Ticket #2218 ... ok
test_complex_nan_maximum (test_regression.TestRegression) ... ok
test_complex_scalar_complex_cast (test_regression.TestRegression) ... ok
test_complex_scalar_warning (test_regression.TestRegression) ... ok
Ticket #789, changeset 5217. ... ok
Convolve should raise an error for empty input array. ... ok
Ticket #658 ... ok
Ticket #771: strides are not set correctly when reshaping 0-sized ... ok
Ticket #658 ... ok
test_copymodule_preserves_f_contiguity (test_regression.TestRegression) ... ok
test_deepcopy_on_0d_array (test_regression.TestRegression) ... ok
Test for ticket #551, changeset r5140 ... ok
Ticket #588 ... ok
Ticket #1106. ... ok
Ticket #35 ... ok
Ticket #335 ... ok
Ticket #344 ... ok
Ticket #334 ... ok
test_duplicate_field_names_assign (test_regression.TestRegression) ... ok
Ticket #1254 ... ok
test_empty_array_type (test_regression.TestRegression) ... ok
test_empty_mul (test_regression.TestRegression) ... ok
Ticket #105 ... ok
Ticket #2185 ... ok
GitHuB issue #369 ... ok
test_eq_string_and_object_array (test_regression.TestRegression) ... ok
Ticket #955 ... ok
Ticket #302 ... ok
Ticket #1760 ... ok
test_find_common_type_boolean (test_regression.TestRegression) ... ok
Correct behaviour of ticket #194 ... ok
Ticket #657 ... ok
test_flat_index_byteswap (test_regression.TestRegression) ... ok
Ticket #640, floats from string ... ok
Ticket #674 ... ok
Ticket #816 ... ok
Ticket #882 ... ok
test_format_on_flex_array_element (test_regression.TestRegression) ... ok
test_fortran_order_buffer (test_regression.TestRegression) ... ok
test_fromfile_tofile_seeks (test_regression.TestRegression) ... ok
Ticket #1058 ... ok
test_fromiter_comparison (test_regression.TestRegression) ... ok
Ticket #503 ... ok
test_fromstring (test_regression.TestRegression) ... ok
test_fromstring_crash (test_regression.TestRegression) ... ok
Ticket #128 ... ok
Regression test for #1062. ... ok
Ticket #64 ... ok
Ticket #65 ... ok
Ticket #99 ... ok
Ticket #3 ... ok
Ticket #483 ... ok
test_large_float_sum (test_regression.TestRegression) ... ok
Lexsort memory error ... ok
Ticket #1217, don't segfault. ... ok
test_lexsort_invalid_sequence (test_regression.TestRegression) ... ok
test_log1p_compiler_shenanigans (test_regression.TestRegression) ... ok
Ticket #714 ... ok
Ticket #243 ... ok
Ticket #196 ... ok
Ticket #327 ... ok
Ticket 702 ... ok
Ticket #562 ... ok
Ticket #126 ... ok
Ticket #106 ... ok
Ticket #93 ... ok
Ticket #7 ... ok
Ticket #330 ... ok
test_mem_fromiter_invalid_dtype_string (test_regression.TestRegression) ... ok
Ticket #298 ... ok
Ticket #583 ... ok
Ticket #603 ... ok
Ticket #514 ... ok
test_memoryleak (test_regression.TestRegression) ... ok
test_method_args (test_regression.TestRegression) ... ok
Ticket #1267 ... ok
Ticket #1198 and #1267 ... ok
Ticket #1267 ... ok
test_mixed_string_unicode_array_creation (test_regression.TestRegression) ... ok
Ticket #449 ... ok
Ticket #273 ... ok
Ticket #324 ... ok
Issue #465 and related checks ... ok
Ticket #49 ... ok
test_nonarray_assignment (test_regression.TestRegression) ... ok
Ticket #413 ... ok
Ticket #58. ... ok
Non-native endian arrays were incorrectly filled with scalars before ... ok
test_nonscalar_item_method (test_regression.TestRegression) ... ok
test_nonzero_byteswap (test_regression.TestRegression) ... ok
Ticket #341 ... ok
test_numpy_float_python_long_addition (test_regression.TestRegression) ... ok
test_object_argmax (test_regression.TestRegression) ... ok
test_object_array_assign (test_regression.TestRegression) ... ok
Ticket #86 ... ok
Ticket #270 ... ok
Ticket #711 ... ok
Ticket #633 ... ok
test_object_array_self_copy (test_regression.TestRegression) ... ok
test_object_array_self_reference (test_regression.TestRegression) ... ok
Ticket #239 ... ok
Ticket #1235. ... ok
test_object_casting (test_regression.TestRegression) ... ok
test_objectarray_setfield (test_regression.TestRegression) ... ok
test_pickle_bytes_overwrite (test_regression.TestRegression) ... ok
Ticket #251 ... ok
test_pickle_string_overwrite (test_regression.TestRegression) ... ok
Ticket #16 ... ok
Ticket #555 ... ok
Ticket #374 ... ok
Check that ravel works when order='F' and array C/F-contiguous ... ok
Ticket #322 ... ok
Ticket #160 ... ok
Ticket #312 ... ok
Ticket #372 ... ok
Ticket #202 ... ok
Ticket #793, changeset r5215 ... ok
Ticket #40 ... ok
Ticket #713 ... ok
GitHub issue #387 ... ok
test_refcount_error_in_clip (test_regression.TestRegression) ... ok
Changeset #3443 ... ok
Ticket #352 ... ok
Make sure reshape order works. ... ok
test_reshape_trailing_ones_strides (test_regression.TestRegression) ... ok
Github Issue #2700, setting shape failed for 0-sized arrays ... ok
Issue #380, test reshaping of zero strided arrays ... ok
Ticket #67 ... ok
Ticket #72 ... ok
test_search_sorted_invalid_arguments (test_regression.TestRegression) ... ok
test_searchsorted_variable_length (test_regression.TestRegression) ... ok
test_searchsorted_wrong_dtype (test_regression.TestRegression) ... ok
Ticket #1736 ... ok
test_sign_bit (test_regression.TestRegression) ... ok
Ticket 794. ... ok
Ticket #1317. ... ok
Ticket #47 ... ok
Similar to GitHub issue #387 ... ok
Ticket #133 ... ok
test_startswith (test_regression.TestRegression) ... ok
Changeset 3557 ... ok
Check argsort for strings containing zeros. ... ok
Ticket #342 ... ok
Ticket #1748 ... ok
Ticket #540 ... ok
Check sort for strings containing zeros. ... ok
test_string_truncation (test_regression.TestRegression) ... ok
test_string_truncation_ucs2 (test_regression.TestRegression) ... ok
Ticket #1299 ... ok
Ticket #1299 second test ... ok
test_structured_count_nonzero (test_regression.TestRegression) ... ok
test_structured_type_to_object (test_regression.TestRegression) ... ok
test_subclass_int_tuple_assignment (test_regression.TestRegression) ... ok
Ticket #265 ... ok
test_take_object_fail (test_regression.TestRegression) ... ok
Ensure that 'take' honours output parameter. ... ok
test_take_refcount (test_regression.TestRegression) ... ok
test_ticket_1434 (test_regression.TestRegression) ... ok
test_ticket_1538 (test_regression.TestRegression) ... ok
test_ticket_1539 (test_regression.TestRegression) ... ok
x.flat shouldn't modify data ... ok
Ticket #1756 ... ok
Should not segfault on python 3k ... ok
Fix in r2836 ... ok
Ticket #31 ... ok
test_ufunc_casting_out (test_regression.TestRegression) ... ok
test_ufunc_no_unnecessary_views (test_regression.TestRegression) ... ok
test_ufunc_reduce_memoryleak (test_regression.TestRegression) ... ok
test_uint64_from_negative (test_regression.TestRegression) ... ok
test_uint_int_conversion (test_regression.TestRegression) ... ok
Ticket #825 ... ok
test_unicode_alloc_dealloc_match (test_regression.TestRegression) ... ok
Ticket #600 ... ok
Ticket #190 ... ok
Ticket #79 ... ok
Ticket #1240. ... ok
test_unique_stable (test_regression.TestRegression) ... ok
Implemented in r2840 ... ok
test_void_copyswap (test_regression.TestRegression) ... ok
test_void_scalar_constructor (test_regression.TestRegression) ... ok
No ticket ... ok
Ticket #205 ... ok
Regression test for #1061. ... ok
Ticket #43 ... ok
Ticket #1733 ... ok
test_init (test_scalarinherit.TestInherit) ... ok
test_init2 (test_scalarinherit.TestInherit) ... ok
test_blocked (test_scalarmath.TestBaseMath) ... ok
test_zero_division (test_scalarmath.TestComplexDivision) ... ok
test_iinfo_long_values (test_scalarmath.TestConversion) ... ok
test_int_from_long (test_scalarmath.TestConversion) ... ok
test_int_raise_behaviour (test_scalarmath.TestConversion) ... ok
test_longdouble_int (test_scalarmath.TestConversion) ... ok
test_numpy_scalar_relational_operators (test_scalarmath.TestConversion) ... ok
test_large_types (test_scalarmath.TestPower) ... ok
test_mixed_types (test_scalarmath.TestPower) ... ok
test_small_types (test_scalarmath.TestPower) ... ok
test_scalarmath.TestRepr.test_float_repr(<type 'numpy.float32'>,) ... ok
test_scalarmath.TestRepr.test_float_repr(<type 'numpy.float64'>,) ... ok
test_leak (test_scalarmath.TestTypes) ... ok
test_type_add (test_scalarmath.TestTypes) ... ok
test_type_create (test_scalarmath.TestTypes) ... ok
test_types (test_scalarmath.TestTypes) ... ok
test_str (test_scalarprint.TestRealScalars) ... ok
test_0D_array (test_shape_base.TestAtleast1d) ... ok
test_1D_array (test_shape_base.TestAtleast1d) ... ok
test_2D_array (test_shape_base.TestAtleast1d) ... ok
test_3D_array (test_shape_base.TestAtleast1d) ... ok
Test to make sure equivalent Travis O's r1array function ... ok
test_0D_array (test_shape_base.TestAtleast2d) ... ok
test_1D_array (test_shape_base.TestAtleast2d) ... ok
test_2D_array (test_shape_base.TestAtleast2d) ... ok
test_3D_array (test_shape_base.TestAtleast2d) ... ok
Test to make sure equivalent Travis O's r2array function ... ok
test_0D_array (test_shape_base.TestAtleast3d) ... ok
test_1D_array (test_shape_base.TestAtleast3d) ... ok
test_2D_array (test_shape_base.TestAtleast3d) ... ok
test_3D_array (test_shape_base.TestAtleast3d) ... ok
test_0D_array (test_shape_base.TestHstack) ... ok
test_1D_array (test_shape_base.TestHstack) ... ok
test_2D_array (test_shape_base.TestHstack) ... ok
test_0D_array (test_shape_base.TestVstack) ... ok
test_1D_array (test_shape_base.TestVstack) ... ok
test_2D_array (test_shape_base.TestVstack) ... ok
test_2D_array2 (test_shape_base.TestVstack) ... ok
test_shape_base.test_concatenate_axis_None ... ok
test_shape_base.test_concatenate ... ok
test_shape_base.test_concatenate_sloppy0 ... ok
Try to check presence and results of all ufuncs. ... ok
test_axis_out_of_bounds (test_ufunc.TestUfunc) ... ok
test_broadcast (test_ufunc.TestUfunc) ... ok
test_casting_out_param (test_ufunc.TestUfunc) ... ok
test_custom_array_like (test_ufunc.TestUfunc) ... ok
test_custom_ufunc (test_ufunc.TestUfunc) ... ok
test_endian (test_ufunc.TestUfunc) ... ok
test_forced_sig (test_ufunc.TestUfunc) ... ok
Test generic loops. ... ok
test_get_signature (test_ufunc.TestUfunc) ... ok
test_identityless_reduction_corder (test_ufunc.TestUfunc) ... ok
test_identityless_reduction_forder (test_ufunc.TestUfunc) ... ok
test_identityless_reduction_noncontig (test_ufunc.TestUfunc) ... ok
test_identityless_reduction_noncontig_unaligned (test_ufunc.TestUfunc) ... ok
test_identityless_reduction_nonreorderable (test_ufunc.TestUfunc) ... ok
test_identityless_reduction_otherorder (test_ufunc.TestUfunc) ... ok
test_incontiguous_array (test_ufunc.TestUfunc) ... ok
test_inner1d (test_ufunc.TestUfunc) ... ok
test_innerwt (test_ufunc.TestUfunc) ... ok
Test generalized ufunc with zero-sized operands ... ok
test_inplace_fancy_indexing (test_ufunc.TestUfunc) ... ok
test_matrix_multiply (test_ufunc.TestUfunc) ... ok
test_object_array_reduction (test_ufunc.TestUfunc) ... ok
test_object_logical (test_ufunc.TestUfunc) ... ok
test_object_scalar_multiply (test_ufunc.TestUfunc) ... ok
test_operand_flags (test_ufunc.TestUfunc) ... ok
test_output_argument (test_ufunc.TestUfunc) ... ok
test_pickle (test_ufunc.TestUfunc) ... ok
test_pickle_withstring (test_ufunc.TestUfunc) ... ok
test_reduce_zero_axis (test_ufunc.TestUfunc) ... ok
test_reduceat_shifting_sum (test_ufunc.TestUfunc) ... ok
test_safe_casting (test_ufunc.TestUfunc) ... ok
test_scalar_reduction (test_ufunc.TestUfunc) ... ok
test_signature (test_ufunc.TestUfunc) ... ok
test_struct_ufunc (test_ufunc.TestUfunc) ... ok
test_sum (test_ufunc.TestUfunc) ... ok
test_sum_complex (test_ufunc.TestUfunc) ... ok
test_sum_stability (test_ufunc.TestUfunc) ... ok
test_type_cast (test_ufunc.TestUfunc) ... ok
test_ufunc_custom_out (test_ufunc.TestUfunc) ... ok
test_where_param (test_ufunc.TestUfunc) ... ok
test_where_param_buffer_output (test_ufunc.TestUfunc) ... ok
test_zerosize_reduction (test_ufunc.TestUfunc) ... ok
test_abs_neg_blocked (test_umath.TestAbsoluteNegative) ... ok
test_any_ninf (test_umath.TestArctan2SpecialValues) ... ok
test_any_pinf (test_umath.TestArctan2SpecialValues) ... ok
test_inf_any (test_umath.TestArctan2SpecialValues) ... ok
test_inf_ninf (test_umath.TestArctan2SpecialValues) ... ok
test_inf_pinf (test_umath.TestArctan2SpecialValues) ... ok
test_nan_any (test_umath.TestArctan2SpecialValues) ... ok
test_negative_zero (test_umath.TestArctan2SpecialValues) ... ok
test_one_one (test_umath.TestArctan2SpecialValues) ... ok
test_positive_zero (test_umath.TestArctan2SpecialValues) ... ok
test_zero_negative (test_umath.TestArctan2SpecialValues) ... ok
test_zero_nzero (test_umath.TestArctan2SpecialValues) ... ok
test_zero_positive (test_umath.TestArctan2SpecialValues) ... ok
test_zero_pzero (test_umath.TestArctan2SpecialValues) ... ok
test_attributes (test_umath.TestAttributes) ... ok
test_mixed (test_umath.TestChoose) ... ok
test_umath.TestComplexFunctions.test_against_cmath ... ok
test_umath.TestComplexFunctions.test_branch_cuts(<ufunc 'log'>, -0.5, 1j, 1, -1) ... ok
test_umath.TestComplexFunctions.test_branch_cuts(<ufunc 'log2'>, -0.5, 1j, 1, -1) ... ok
test_umath.TestComplexFunctions.test_branch_cuts(<ufunc 'log10'>, -0.5, 1j, 1, -1) ... ok
test_umath.TestComplexFunctions.test_branch_cuts(<ufunc 'log1p'>, -1.5, 1j, 1, -1) ... ok
test_umath.TestComplexFunctions.test_branch_cuts(<ufunc 'sqrt'>, -0.5, 1j, 1, -1) ... ok
test_umath.TestComplexFunctions.test_branch_cuts(<ufunc 'arcsin'>, [-2, 2], [1j, -1j], 1, -1) ... ok
test_umath.TestComplexFunctions.test_branch_cuts(<ufunc 'arccos'>, [-2, 2], [1j, -1j], 1, -1) ... ok
test_umath.TestComplexFunctions.test_branch_cuts(<ufunc 'arctan'>, [-2j, 2j], [1, -1], -1, 1) ... ok
test_umath.TestComplexFunctions.test_branch_cuts(<ufunc 'arcsinh'>, [-2j, 2j], [-1, 1], -1, 1) ... ok
test_umath.TestComplexFunctions.test_branch_cuts(<ufunc 'arccosh'>, [-1, 0.5], [1j, 1j], 1, -1) ... ok
test_umath.TestComplexFunctions.test_branch_cuts(<ufunc 'arctanh'>, [-2, 2], [1j, -1j], 1, -1) ... ok
test_umath.TestComplexFunctions.test_branch_cuts(<ufunc 'arcsin'>, [-2j, 2j], [1, 1], 1, 1) ... ok
test_umath.TestComplexFunctions.test_branch_cuts(<ufunc 'arccos'>, [-2j, 2j], [1, 1], 1, 1) ... ok
test_umath.TestComplexFunctions.test_branch_cuts(<ufunc 'arctan'>, [-2, 2], [1j, 1j], 1, 1) ... ok
test_umath.TestComplexFunctions.test_branch_cuts(<ufunc 'arcsinh'>, [-2, 2, 0], [1j, 1j, 1], 1, 1) ... ok
test_umath.TestComplexFunctions.test_branch_cuts(<ufunc 'arccosh'>, [-2j, 2j, 2], [1, 1, 1j], 1, 1) ... ok
test_umath.TestComplexFunctions.test_branch_cuts(<ufunc 'arctanh'>, [-2j, 2j, 0], [1, 1, 1j], 1, 1) ... ok
test_umath.TestComplexFunctions.test_branch_cuts_failing ... KNOWNFAIL: These branch cuts are known to fail
test_umath.TestComplexFunctions.test_it ... ok
test_umath.TestComplexFunctions.test_loss_of_precision(<type 'numpy.complex64'>,) ... ok
test_umath.TestComplexFunctions.test_loss_of_precision(<type 'numpy.complex128'>,) ... ok
test_umath.TestComplexFunctions.test_loss_of_precision_longcomplex ... ok
test_umath.TestComplexFunctions.test_precisions_consistent ... ok
test_e (test_umath.TestConstants) ... ok
test_euler_gamma (test_umath.TestConstants) ... ok
test_pi (test_umath.TestConstants) ... ok
test_degrees (test_umath.TestDegrees) ... ok
test_division_complex (test_umath.TestDivision) ... ok
test_division_int (test_umath.TestDivision) ... ok
test_floor_division_complex (test_umath.TestDivision) ... ok
test_zero_division_complex (test_umath.TestDivision) ... ok
test_exp_values (test_umath.TestExp) ... ok
test_exp2_values (test_umath.TestExp2) ... ok
test_expm1 (test_umath.TestExpm1) ... ok
test_special (test_umath.TestExpm1) ... ok
test_floating_point (test_umath.TestFloatingPoint) ... ok
test_umath.TestFmax.test_complex_nans ... ok
test_umath.TestFmax.test_float_nans ... ok
test_umath.TestFmax.test_reduce ... ok
test_umath.TestFmax.test_reduce_complex ... ok
test_umath.TestFmin.test_complex_nans ... ok
test_umath.TestFmin.test_float_nans ... ok
test_umath.TestFmin.test_reduce ... ok
test_umath.TestFmin.test_reduce_complex ... ok
test_simple (test_umath.TestHypot) ... ok
test_nan_outputs (test_umath.TestHypotSpecialValues) ... ok
test_nan_outputs2 (test_umath.TestHypotSpecialValues) ... ok
test_no_fpe (test_umath.TestHypotSpecialValues) ... ok
test_ldexp (test_umath.TestLdexp) ... ok
test_ldexp_overflow (test_umath.TestLdexp) ... ok
test_log_values (test_umath.TestLog) ... ok
test_log1p (test_umath.TestLog1p) ... ok
test_special (test_umath.TestLog1p) ... ok
test_log2_values (test_umath.TestLog2) ... ok
test_umath.TestLogAddExp.test_inf ... ok
test_umath.TestLogAddExp.test_logaddexp_range ... ok
test_umath.TestLogAddExp.test_logaddexp_values ... ok
test_umath.TestLogAddExp.test_nan ... ok
test_umath.TestLogAddExp2.test_inf ... ok
test_umath.TestLogAddExp2.test_logaddexp2_range ... ok
test_umath.TestLogAddExp2.test_logaddexp2_values ... ok
test_umath.TestLogAddExp2.test_nan ... ok
test_umath.TestMaximum.test_complex_nans ... ok
test_umath.TestMaximum.test_float_nans ... ok
test_umath.TestMaximum.test_object_array ... ok
test_umath.TestMaximum.test_reduce ... ok
test_umath.TestMaximum.test_reduce_complex ... ok
test_minmax_blocked (test_umath.TestMinMax) ... ok
test_umath.TestMinimum.test_complex_nans ... ok
test_umath.TestMinimum.test_float_nans ... ok
test_umath.TestMinimum.test_object_array ... ok
test_umath.TestMinimum.test_reduce ... ok
test_umath.TestMinimum.test_reduce_complex ... ok
test_fast_power (test_umath.TestPower) ... ok
test_power_complex (test_umath.TestPower) ... ok
test_power_float (test_umath.TestPower) ... ok
test_power_zero (test_umath.TestPower) ... ok
test_radians (test_umath.TestRadians) ... ok
test_sign (test_umath.TestSign) ... ok
test_array_with_context (test_umath.TestSpecialMethods) ... ok
test_default_prepare (test_umath.TestSpecialMethods) ... ok
test_failing_prepare (test_umath.TestSpecialMethods) ... ok
test_failing_wrap (test_umath.TestSpecialMethods) ... ok
test_old_wrap (test_umath.TestSpecialMethods) ... ok
test_prepare (test_umath.TestSpecialMethods) ... ok
test_priority (test_umath.TestSpecialMethods) ... ok
test_priority_with_scalar (test_umath.TestSpecialMethods) ... ok
test_ufunc_override (test_umath.TestSpecialMethods) ... ok
test_ufunc_override_exception (test_umath.TestSpecialMethods) ... ok
test_ufunc_override_methods (test_umath.TestSpecialMethods) ... ok
test_ufunc_override_mro (test_umath.TestSpecialMethods) ... ok
test_ufunc_override_out (test_umath.TestSpecialMethods) ... ok
test_wrap (test_umath.TestSpecialMethods) ... ok
test_wrap_with_iterable (test_umath.TestSpecialMethods) ... ok
test_subclass_op (test_umath.TestSubclass) ... ok
test_umath.test_copysign ... ok
test_umath.test_nextafter ... ok
test_umath.test_nextafterf ... ok
test_umath.test_nextafterl ... ok
test_umath.test_spacing ... ok
test_umath.test_spacingf ... ok
test_umath.test_spacingl ... ok
test_umath.test_spacing_gfortran ... ok
test_umath.test_nextafter_vs_spacing ... ok
Check np.nan is a positive nan. ... ok
Test bug in reduceat when structured arrays are not copied. ... ok
Reduceat should work with empty arrays ... ok
test_umath.test_complex_nan_comparisons ... ok
test_umath_complex.TestCabs.test_cabs_inf_nan(<ufunc 'absolute'>, nan, nan, nan) ... ok
test_umath_complex.TestCabs.test_cabs_inf_nan(<ufunc 'absolute'>, nan, nan, nan) ... ok
test_umath_complex.TestCabs.test_cabs_inf_nan(<ufunc 'absolute'>, inf, nan, inf) ... ok
test_umath_complex.TestCabs.test_cabs_inf_nan(<ufunc 'absolute'>, -inf, nan, inf) ... ok
test_umath_complex.TestCabs.test_cabs_inf_nan(<function f at 0x42ecb90>, nan, nan, nan) ... ok
test_umath_complex.TestCabs.test_cabs_inf_nan(<function f at 0x42ecb90>, nan, nan, nan) ... ok
test_umath_complex.TestCabs.test_cabs_inf_nan(<function f at 0x42ecb90>, inf, nan, inf) ... ok
test_umath_complex.TestCabs.test_cabs_inf_nan(<function f at 0x42ecb90>, -inf, nan, inf) ... ok
test_umath_complex.TestCabs.test_fabs ... ok
test_umath_complex.TestCabs.test_simple ... ok
test_umath_complex.TestCarg.test_simple ... ok
test_umath_complex.TestCarg.test_special_values(<ufunc '_arg'>, -inf, 1, 3.141592653589793, False) ... ok
test_umath_complex.TestCarg.test_special_values(<ufunc '_arg'>, -inf, -1, -3.141592653589793, False) ... ok
test_umath_complex.TestCarg.test_special_values(<ufunc '_arg'>, inf, 1, 0.0, False) ... ok
test_umath_complex.TestCarg.test_special_values(<ufunc '_arg'>, inf, -1, -0.0, False) ... ok
test_umath_complex.TestCarg.test_special_values(<ufunc '_arg'>, 1, inf, 1.5707963267948966, False) ... ok
test_umath_complex.TestCarg.test_special_values(<ufunc '_arg'>, 1, -inf, -1.5707963267948966, False) ... ok
test_umath_complex.TestCarg.test_special_values(<ufunc '_arg'>, -inf, inf, 2.356194490192345, False) ... ok
test_umath_complex.TestCarg.test_special_values(<ufunc '_arg'>, -inf, -inf, -2.356194490192345, False) ... ok
test_umath_complex.TestCarg.test_special_values(<ufunc '_arg'>, inf, inf, 0.7853981633974483, False) ... ok
test_umath_complex.TestCarg.test_special_values(<ufunc '_arg'>, inf, -inf, -0.7853981633974483, False) ... ok
test_umath_complex.TestCarg.test_special_values(<ufunc '_arg'>, nan, 0, nan, False) ... ok
test_umath_complex.TestCarg.test_special_values(<ufunc '_arg'>, 0, nan, nan, False) ... ok
test_umath_complex.TestCarg.test_special_values(<ufunc '_arg'>, nan, inf, nan, False) ... ok
test_umath_complex.TestCarg.test_special_values(<ufunc '_arg'>, inf, nan, nan, False) ... ok
test_umath_complex.TestCarg.test_zero ... KNOWNFAIL: Complex arithmetic with signed zero is buggy on most implementation
test_umath_complex.TestCexp.test_simple(<ufunc 'exp'>, 1, 0, 2.7182818284590451, 0, False) ... ok
test_umath_complex.TestCexp.test_simple(<ufunc 'exp'>, 0, 1, 0.54030230586813977, 0.8414709848078965, False) ... ok
test_umath_complex.TestCexp.test_simple(<ufunc 'exp'>, 1, 1, 1.4686939399158851, 2.2873552871788423, False) ... ok
test_umath_complex.TestCexp.test_special_values(<ufunc 'exp'>, 0.0, 0, 1, 0, False) ... ok
test_umath_complex.TestCexp.test_special_values(<ufunc 'exp'>, -0.0, 0, 1, 0, False) ... ok
test_umath_complex.TestCexp.test_special_values(<ufunc 'exp'>, 1, inf, nan, nan) ... ok
test_umath_complex.TestCexp.test_special_values(<ufunc 'exp'>, -1, inf, nan, nan) ... ok
test_umath_complex.TestCexp.test_special_values(<ufunc 'exp'>, 0, inf, nan, nan) ... ok
test_umath_complex.TestCexp.test_special_values(<ufunc 'exp'>, inf, 0, inf, 0) ... ok
test_umath_complex.TestCexp.test_special_values(<ufunc 'exp'>, -inf, 1, 0.0, 0.0) ... ok
test_umath_complex.TestCexp.test_special_values(<ufunc 'exp'>, -inf, 2.356194490192345, -0.0, 0.0) ... ok
test_umath_complex.TestCexp.test_special_values(<ufunc 'exp'>, inf, 1, inf, inf) ... ok
test_umath_complex.TestCexp.test_special_values(<ufunc 'exp'>, inf, 2.356194490192345, -inf, inf) ... ok
test_umath_complex.TestCexp.test_special_values(None,) ... ok
test_umath_complex.TestCexp.test_special_values(None,) ... ok
test_umath_complex.TestCexp.test_special_values(None,) ... ok
test_umath_complex.TestCexp.test_special_values(None,) ... ok
test_umath_complex.TestCexp.test_special_values(<ufunc 'exp'>, nan, 1, nan, nan) ... ok
test_umath_complex.TestCexp.test_special_values(<ufunc 'exp'>, nan, -1, nan, nan) ... ok
test_umath_complex.TestCexp.test_special_values(<ufunc 'exp'>, nan, inf, nan, nan) ... ok
test_umath_complex.TestCexp.test_special_values(<ufunc 'exp'>, nan, -inf, nan, nan) ... ok
test_umath_complex.TestCexp.test_special_values(<ufunc 'exp'>, nan, nan, nan, nan) ... ok
test_umath_complex.TestCexp.test_special_values2 ... KNOWNFAIL: cexp(nan + 0I) is wrong on most implementations
test_simple (test_umath_complex.TestClog) ... ok
test_special_values (test_umath_complex.TestClog) ... ok
test_array (test_umath_complex.TestCpow) ... ok
test_scalar (test_umath_complex.TestCpow) ... ok
test_simple (test_umath_complex.TestCpow) ... ok
test_umath_complex.TestCsqrt.test_simple(<ufunc 'sqrt'>, 1, 0, 1, 0) ... ok
test_umath_complex.TestCsqrt.test_simple(<ufunc 'sqrt'>, 0, 1, 0.70710678118654757, 0.70710678118654757, False) ... ok
test_umath_complex.TestCsqrt.test_simple(<ufunc 'sqrt'>, -1, 0, 0, 1) ... ok
test_umath_complex.TestCsqrt.test_simple_conjugate(<function f at 0x2613050>, 1, 1, 1.09868411346781, -0.45508986056222733, False) ... ok
test_umath_complex.TestCsqrt.test_special_values(<ufunc 'sqrt'>, 0.0, 0, 0, 0) ... ok
test_umath_complex.TestCsqrt.test_special_values(<ufunc 'sqrt'>, -0.0, 0, 0, 0) ... ok
test_umath_complex.TestCsqrt.test_special_values(<ufunc 'sqrt'>, 1, inf, inf, inf) ... ok
test_umath_complex.TestCsqrt.test_special_values(<ufunc 'sqrt'>, -1, inf, inf, inf) ... ok
test_umath_complex.TestCsqrt.test_special_values(<ufunc 'sqrt'>, 0.0, inf, inf, inf) ... ok
test_umath_complex.TestCsqrt.test_special_values(<ufunc 'sqrt'>, -0.0, inf, inf, inf) ... ok
test_umath_complex.TestCsqrt.test_special_values(<ufunc 'sqrt'>, inf, inf, inf, inf) ... ok
test_umath_complex.TestCsqrt.test_special_values(<ufunc 'sqrt'>, -inf, inf, inf, inf) ... ok
test_umath_complex.TestCsqrt.test_special_values(<ufunc 'sqrt'>, nan, inf, inf, inf) ... ok
test_umath_complex.TestCsqrt.test_special_values(<ufunc 'sqrt'>, 1, nan, nan, nan) ... ok
test_umath_complex.TestCsqrt.test_special_values(<ufunc 'sqrt'>, -1, nan, nan, nan) ... ok
test_umath_complex.TestCsqrt.test_special_values(<ufunc 'sqrt'>, 0, nan, nan, nan) ... ok
test_umath_complex.TestCsqrt.test_special_values(<ufunc 'sqrt'>, -inf, 1, 0.0, inf) ... ok
test_umath_complex.TestCsqrt.test_special_values(<ufunc 'sqrt'>, inf, 1, inf, 0.0) ... ok
test_umath_complex.TestCsqrt.test_special_values(None,) ... ok
test_umath_complex.TestCsqrt.test_special_values(<ufunc 'sqrt'>, inf, nan, inf, nan) ... ok
test_umath_complex.TestCsqrt.test_special_values(<ufunc 'sqrt'>, nan, 0, nan, nan) ... ok
test_umath_complex.TestCsqrt.test_special_values(<ufunc 'sqrt'>, nan, 1, nan, nan) ... ok
test_umath_complex.TestCsqrt.test_special_values(<ufunc 'sqrt'>, nan, nan, nan, nan) ... ok
Check assignment of 0-dimensional objects with values ... ok
Check assignment of multi-dimensional objects with values ... ok
Check assignment of single-dimensional objects with values ... ok
Check assignment of 0-dimensional objects with values ... ok
Check assignment of multi-dimensional objects with values ... ok
Check assignment of single-dimensional objects with values ... ok
Check assignment of 0-dimensional objects with values ... ok
Check assignment of multi-dimensional objects with values ... ok
Check assignment of single-dimensional objects with values ... ok
Check assignment of 0-dimensional objects with values ... ok
Check assignment of multi-dimensional objects with values ... ok
Check assignment of single-dimensional objects with values ... ok
Check assignment of 0-dimensional objects with values ... ok
Check assignment of multi-dimensional objects with values ... ok
Check assignment of single-dimensional objects with values ... ok
Check assignment of 0-dimensional objects with values ... ok
Check assignment of multi-dimensional objects with values ... ok
Check assignment of single-dimensional objects with values ... ok
Check byteorder of 0-dimensional objects ... ok
Check byteorder of multi-dimensional objects ... ok
Check byteorder of single-dimensional objects ... ok
Check byteorder of 0-dimensional objects ... ok
Check byteorder of multi-dimensional objects ... ok
Check byteorder of single-dimensional objects ... ok
Check byteorder of 0-dimensional objects ... ok
Check byteorder of multi-dimensional objects ... ok
Check byteorder of single-dimensional objects ... ok
Check byteorder of 0-dimensional objects ... ok
Check byteorder of multi-dimensional objects ... ok
Check byteorder of single-dimensional objects ... ok
Check byteorder of 0-dimensional objects ... ok
Check byteorder of multi-dimensional objects ... ok
Check byteorder of single-dimensional objects ... ok
Check byteorder of 0-dimensional objects ... ok
Check byteorder of multi-dimensional objects ... ok
Check byteorder of single-dimensional objects ... ok
Check creation of 0-dimensional objects with values ... ok
Check creation of multi-dimensional objects with values ... ok
Check creation of single-dimensional objects with values ... ok
Check creation of 0-dimensional objects with values ... ok
Check creation of multi-dimensional objects with values ... ok
Check creation of single-dimensional objects with values ... ok
Check creation of 0-dimensional objects with values ... ok
Check creation of multi-dimensional objects with values ... ok
Check creation of single-dimensional objects with values ... ok
Check creation of 0-dimensional objects with values ... ok
Check creation of multi-dimensional objects with values ... ok
Check creation of single-dimensional objects with values ... ok
Check creation of 0-dimensional objects with values ... ok
Check creation of multi-dimensional objects with values ... ok
Check creation of single-dimensional objects with values ... ok
Check creation of 0-dimensional objects with values ... ok
Check creation of multi-dimensional objects with values ... ok
Check creation of single-dimensional objects with values ... ok
Check creation of 0-dimensional objects ... ok
Check creation of multi-dimensional objects ... ok
Check creation of single-dimensional objects ... ok
Check creation of 0-dimensional objects ... ok
Check creation of multi-dimensional objects ... ok
Check creation of single-dimensional objects ... ok
Check creation of 0-dimensional objects ... ok
Check creation of multi-dimensional objects ... ok
Check creation of single-dimensional objects ... ok
test_exec_command.test_exec_command_stdout ... ok
test_exec_command.test_exec_command_stderr ... ok
test_g77_version (test_fcompiler_gnu.TestG77Versions) ... ok
test_not_g77 (test_fcompiler_gnu.TestG77Versions) ... ok
test_gfortran_version (test_fcompiler_gnu.TestGortranVersions) ... ok
test_not_gfortran (test_fcompiler_gnu.TestGortranVersions) ... ok
test_64bit_version (test_fcompiler_intel.TestIntelEM64TFCompilerVersions) ... ok
test_32bit_version (test_fcompiler_intel.TestIntelFCompilerVersions) ... ok
test_1 (test_misc_util.TestAppendpath) ... ok
test_2 (test_misc_util.TestAppendpath) ... ok
test_3 (test_misc_util.TestAppendpath) ... ok
test_gpaths (test_misc_util.TestGpaths) ... ok
test_1 (test_misc_util.TestMinrelpath) ... ok
test_get_shared_lib_extension (test_misc_util.TestSharedExtension) ... ok
test_simple (test_npy_pkg_config.TestLibraryInfo) ... ok
test_simple_variable (test_npy_pkg_config.TestLibraryInfo) ... ok
test_simple_cflags (test_npy_pkg_config.TestParseFlags) ... ok
test_simple_lflags (test_npy_pkg_config.TestParseFlags) ... ok
test_c_copy_in_from_23casttype (test_array_from_pyobj.test_BOOL_gen) ... ok
test_c_in_from_23casttype (test_array_from_pyobj.test_BOOL_gen) ... ok
test_c_in_from_23seq (test_array_from_pyobj.test_BOOL_gen) ... ok
test_c_inout_23seq (test_array_from_pyobj.test_BOOL_gen) ... ok
test_cache_hidden (test_array_from_pyobj.test_BOOL_gen) ... ok
test_f_copy_in_from_23casttype (test_array_from_pyobj.test_BOOL_gen) ... ok
test_f_in_from_23casttype (test_array_from_pyobj.test_BOOL_gen) ... ok
test_f_inout_23seq (test_array_from_pyobj.test_BOOL_gen) ... ok
test_hidden (test_array_from_pyobj.test_BOOL_gen) ... ok
test_in_cache_from_2casttype (test_array_from_pyobj.test_BOOL_gen) ... ok
test_in_cache_from_2casttype_failure (test_array_from_pyobj.test_BOOL_gen) ... ok
test_in_copy_from_2casttype (test_array_from_pyobj.test_BOOL_gen) ... ok
test_in_from_23casttype (test_array_from_pyobj.test_BOOL_gen) ... ok
test_in_from_2casttype (test_array_from_pyobj.test_BOOL_gen) ... ok
test_in_from_2seq (test_array_from_pyobj.test_BOOL_gen) ... ok
test_inout_2seq (test_array_from_pyobj.test_BOOL_gen) ... ok
test_inplace (test_array_from_pyobj.test_BOOL_gen) ... ok
test_inplace_from_casttype (test_array_from_pyobj.test_BOOL_gen) ... ok
test_optional_from_23seq (test_array_from_pyobj.test_BOOL_gen) ... ok
test_optional_from_2seq (test_array_from_pyobj.test_BOOL_gen) ... ok
test_optional_none (test_array_from_pyobj.test_BOOL_gen) ... ok
test_c_copy_in_from_23casttype (test_array_from_pyobj.test_BYTE_gen) ... ok
test_c_in_from_23casttype (test_array_from_pyobj.test_BYTE_gen) ... ok
test_c_in_from_23seq (test_array_from_pyobj.test_BYTE_gen) ... ok
test_c_inout_23seq (test_array_from_pyobj.test_BYTE_gen) ... ok
test_cache_hidden (test_array_from_pyobj.test_BYTE_gen) ... ok
test_f_copy_in_from_23casttype (test_array_from_pyobj.test_BYTE_gen) ... ok
test_f_in_from_23casttype (test_array_from_pyobj.test_BYTE_gen) ... ok
test_f_inout_23seq (test_array_from_pyobj.test_BYTE_gen) ... ok
test_hidden (test_array_from_pyobj.test_BYTE_gen) ... ok
test_in_cache_from_2casttype (test_array_from_pyobj.test_BYTE_gen) ... ok
test_in_cache_from_2casttype_failure (test_array_from_pyobj.test_BYTE_gen) ... ok
test_in_copy_from_2casttype (test_array_from_pyobj.test_BYTE_gen) ... ok
test_in_from_23casttype (test_array_from_pyobj.test_BYTE_gen) ... ok
test_in_from_2casttype (test_array_from_pyobj.test_BYTE_gen) ... ok
test_in_from_2seq (test_array_from_pyobj.test_BYTE_gen) ... ok
test_inout_2seq (test_array_from_pyobj.test_BYTE_gen) ... ok
test_inplace (test_array_from_pyobj.test_BYTE_gen) ... ok
test_inplace_from_casttype (test_array_from_pyobj.test_BYTE_gen) ... ok
test_optional_from_23seq (test_array_from_pyobj.test_BYTE_gen) ... ok
test_optional_from_2seq (test_array_from_pyobj.test_BYTE_gen) ... ok
test_optional_none (test_array_from_pyobj.test_BYTE_gen) ... ok
test_c_copy_in_from_23casttype (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_c_in_from_23casttype (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_c_in_from_23seq (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_c_inout_23seq (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_cache_hidden (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_f_copy_in_from_23casttype (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_f_in_from_23casttype (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_f_inout_23seq (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_hidden (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_in_cache_from_2casttype (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_in_cache_from_2casttype_failure (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_in_copy_from_2casttype (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_in_from_23casttype (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_in_from_2casttype (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_in_from_2seq (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_inout_2seq (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_inplace (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_inplace_from_casttype (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_optional_from_23seq (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_optional_from_2seq (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_optional_none (test_array_from_pyobj.test_CDOUBLE_gen) ... ok
test_c_copy_in_from_23casttype (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_c_in_from_23casttype (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_c_in_from_23seq (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_c_inout_23seq (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_cache_hidden (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_f_copy_in_from_23casttype (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_f_in_from_23casttype (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_f_inout_23seq (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_hidden (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_in_cache_from_2casttype (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_in_cache_from_2casttype_failure (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_in_copy_from_2casttype (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_in_from_23casttype (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_in_from_2casttype (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_in_from_2seq (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_inout_2seq (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_inplace (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_inplace_from_casttype (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_optional_from_23seq (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_optional_from_2seq (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_optional_none (test_array_from_pyobj.test_CFLOAT_gen) ... ok
test_c_copy_in_from_23casttype (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_c_in_from_23casttype (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_c_in_from_23seq (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_c_inout_23seq (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_cache_hidden (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_f_copy_in_from_23casttype (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_f_in_from_23casttype (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_f_inout_23seq (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_hidden (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_in_cache_from_2casttype (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_in_cache_from_2casttype_failure (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_in_copy_from_2casttype (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_in_from_23casttype (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_in_from_2casttype (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_in_from_2seq (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_inout_2seq (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_inplace (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_inplace_from_casttype (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_optional_from_23seq (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_optional_from_2seq (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_optional_none (test_array_from_pyobj.test_CLONGDOUBLE_gen) ... ok
test_c_copy_in_from_23casttype (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_c_in_from_23casttype (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_c_in_from_23seq (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_c_inout_23seq (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_cache_hidden (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_f_copy_in_from_23casttype (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_f_in_from_23casttype (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_f_inout_23seq (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_hidden (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_in_cache_from_2casttype (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_in_cache_from_2casttype_failure (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_in_copy_from_2casttype (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_in_from_23casttype (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_in_from_2casttype (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_in_from_2seq (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_inout_2seq (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_inplace (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_inplace_from_casttype (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_optional_from_23seq (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_optional_from_2seq (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_optional_none (test_array_from_pyobj.test_DOUBLE_gen) ... ok
test_c_copy_in_from_23casttype (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_c_in_from_23casttype (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_c_in_from_23seq (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_c_inout_23seq (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_cache_hidden (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_f_copy_in_from_23casttype (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_f_in_from_23casttype (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_f_inout_23seq (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_hidden (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_in_cache_from_2casttype (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_in_cache_from_2casttype_failure (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_in_copy_from_2casttype (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_in_from_23casttype (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_in_from_2casttype (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_in_from_2seq (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_inout_2seq (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_inplace (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_inplace_from_casttype (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_optional_from_23seq (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_optional_from_2seq (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_optional_none (test_array_from_pyobj.test_FLOAT_gen) ... ok
test_c_copy_in_from_23casttype (test_array_from_pyobj.test_INT_gen) ... ok
test_c_in_from_23casttype (test_array_from_pyobj.test_INT_gen) ... ok
test_c_in_from_23seq (test_array_from_pyobj.test_INT_gen) ... ok
test_c_inout_23seq (test_array_from_pyobj.test_INT_gen) ... ok
test_cache_hidden (test_array_from_pyobj.test_INT_gen) ... ok
test_f_copy_in_from_23casttype (test_array_from_pyobj.test_INT_gen) ... ok
test_f_in_from_23casttype (test_array_from_pyobj.test_INT_gen) ... ok
test_f_inout_23seq (test_array_from_pyobj.test_INT_gen) ... ok
test_hidden (test_array_from_pyobj.test_INT_gen) ... ok
test_in_cache_from_2casttype (test_array_from_pyobj.test_INT_gen) ... ok
test_in_cache_from_2casttype_failure (test_array_from_pyobj.test_INT_gen) ... ok
test_in_copy_from_2casttype (test_array_from_pyobj.test_INT_gen) ... ok
test_in_from_23casttype (test_array_from_pyobj.test_INT_gen) ... ok
test_in_from_2casttype (test_array_from_pyobj.test_INT_gen) ... ok
test_in_from_2seq (test_array_from_pyobj.test_INT_gen) ... ok
test_inout_2seq (test_array_from_pyobj.test_INT_gen) ... ok
test_inplace (test_array_from_pyobj.test_INT_gen) ... ok
test_inplace_from_casttype (test_array_from_pyobj.test_INT_gen) ... ok
test_optional_from_23seq (test_array_from_pyobj.test_INT_gen) ... ok
test_optional_from_2seq (test_array_from_pyobj.test_INT_gen) ... ok
test_optional_none (test_array_from_pyobj.test_INT_gen) ... ok
test_c_copy_in_from_23casttype (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_c_in_from_23casttype (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_c_in_from_23seq (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_c_inout_23seq (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_cache_hidden (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_f_copy_in_from_23casttype (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_f_in_from_23casttype (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_f_inout_23seq (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_hidden (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_in_cache_from_2casttype (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_in_cache_from_2casttype_failure (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_in_copy_from_2casttype (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_in_from_23casttype (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_in_from_2casttype (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_in_from_2seq (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_inout_2seq (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_inplace (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_inplace_from_casttype (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_optional_from_23seq (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_optional_from_2seq (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_optional_none (test_array_from_pyobj.test_LONGDOUBLE_gen) ... ok
test_c_copy_in_from_23casttype (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_c_in_from_23casttype (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_c_in_from_23seq (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_c_inout_23seq (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_cache_hidden (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_f_copy_in_from_23casttype (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_f_in_from_23casttype (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_f_inout_23seq (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_hidden (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_in_cache_from_2casttype (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_in_cache_from_2casttype_failure (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_in_copy_from_2casttype (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_in_from_23casttype (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_in_from_2casttype (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_in_from_2seq (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_inout_2seq (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_inplace (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_inplace_from_casttype (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_optional_from_23seq (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_optional_from_2seq (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_optional_none (test_array_from_pyobj.test_LONGLONG_gen) ... ok
test_c_copy_in_from_23casttype (test_array_from_pyobj.test_LONG_gen) ... ok
test_c_in_from_23casttype (test_array_from_pyobj.test_LONG_gen) ... ok
test_c_in_from_23seq (test_array_from_pyobj.test_LONG_gen) ... ok
test_c_inout_23seq (test_array_from_pyobj.test_LONG_gen) ... ok
test_cache_hidden (test_array_from_pyobj.test_LONG_gen) ... ok
test_f_copy_in_from_23casttype (test_array_from_pyobj.test_LONG_gen) ... ok
test_f_in_from_23casttype (test_array_from_pyobj.test_LONG_gen) ... ok
test_f_inout_23seq (test_array_from_pyobj.test_LONG_gen) ... ok
test_hidden (test_array_from_pyobj.test_LONG_gen) ... ok
test_in_cache_from_2casttype (test_array_from_pyobj.test_LONG_gen) ... ok
test_in_cache_from_2casttype_failure (test_array_from_pyobj.test_LONG_gen) ... ok
test_in_copy_from_2casttype (test_array_from_pyobj.test_LONG_gen) ... ok
test_in_from_23casttype (test_array_from_pyobj.test_LONG_gen) ... ok
test_in_from_2casttype (test_array_from_pyobj.test_LONG_gen) ... ok
test_in_from_2seq (test_array_from_pyobj.test_LONG_gen) ... ok
test_inout_2seq (test_array_from_pyobj.test_LONG_gen) ... ok
test_inplace (test_array_from_pyobj.test_LONG_gen) ... ok
test_inplace_from_casttype (test_array_from_pyobj.test_LONG_gen) ... ok
test_optional_from_23seq (test_array_from_pyobj.test_LONG_gen) ... ok
test_optional_from_2seq (test_array_from_pyobj.test_LONG_gen) ... ok
test_optional_none (test_array_from_pyobj.test_LONG_gen) ... ok
test_c_copy_in_from_23casttype (test_array_from_pyobj.test_SHORT_gen) ... ok
test_c_in_from_23casttype (test_array_from_pyobj.test_SHORT_gen) ... ok
test_c_in_from_23seq (test_array_from_pyobj.test_SHORT_gen) ... ok
test_c_inout_23seq (test_array_from_pyobj.test_SHORT_gen) ... ok
test_cache_hidden (test_array_from_pyobj.test_SHORT_gen) ... ok
test_f_copy_in_from_23casttype (test_array_from_pyobj.test_SHORT_gen) ... ok
test_f_in_from_23casttype (test_array_from_pyobj.test_SHORT_gen) ... ok
test_f_inout_23seq (test_array_from_pyobj.test_SHORT_gen) ... ok
test_hidden (test_array_from_pyobj.test_SHORT_gen) ... ok
test_in_cache_from_2casttype (test_array_from_pyobj.test_SHORT_gen) ... ok
test_in_cache_from_2casttype_failure (test_array_from_pyobj.test_SHORT_gen) ... ok
test_in_copy_from_2casttype (test_array_from_pyobj.test_SHORT_gen) ... ok
test_in_from_23casttype (test_array_from_pyobj.test_SHORT_gen) ... ok
test_in_from_2casttype (test_array_from_pyobj.test_SHORT_gen) ... ok
test_in_from_2seq (test_array_from_pyobj.test_SHORT_gen) ... ok
test_inout_2seq (test_array_from_pyobj.test_SHORT_gen) ... ok
test_inplace (test_array_from_pyobj.test_SHORT_gen) ... ok
test_inplace_from_casttype (test_array_from_pyobj.test_SHORT_gen) ... ok
test_optional_from_23seq (test_array_from_pyobj.test_SHORT_gen) ... ok
test_optional_from_2seq (test_array_from_pyobj.test_SHORT_gen) ... ok
test_optional_none (test_array_from_pyobj.test_SHORT_gen) ... ok
test_c_copy_in_from_23casttype (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_c_in_from_23casttype (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_c_in_from_23seq (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_c_inout_23seq (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_cache_hidden (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_f_copy_in_from_23casttype (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_f_in_from_23casttype (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_f_inout_23seq (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_hidden (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_in_cache_from_2casttype (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_in_cache_from_2casttype_failure (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_in_copy_from_2casttype (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_in_from_23casttype (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_in_from_2casttype (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_in_from_2seq (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_inout_2seq (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_inplace (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_inplace_from_casttype (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_optional_from_23seq (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_optional_from_2seq (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_optional_none (test_array_from_pyobj.test_UBYTE_gen) ... ok
test_c_copy_in_from_23casttype (test_array_from_pyobj.test_UINT_gen) ... ok
test_c_in_from_23casttype (test_array_from_pyobj.test_UINT_gen) ... ok
test_c_in_from_23seq (test_array_from_pyobj.test_UINT_gen) ... ok
test_c_inout_23seq (test_array_from_pyobj.test_UINT_gen) ... ok
test_cache_hidden (test_array_from_pyobj.test_UINT_gen) ... ok
test_f_copy_in_from_23casttype (test_array_from_pyobj.test_UINT_gen) ... ok
test_f_in_from_23casttype (test_array_from_pyobj.test_UINT_gen) ... ok
test_f_inout_23seq (test_array_from_pyobj.test_UINT_gen) ... ok
test_hidden (test_array_from_pyobj.test_UINT_gen) ... ok
test_in_cache_from_2casttype (test_array_from_pyobj.test_UINT_gen) ... ok
test_in_cache_from_2casttype_failure (test_array_from_pyobj.test_UINT_gen) ... ok
test_in_copy_from_2casttype (test_array_from_pyobj.test_UINT_gen) ... ok
test_in_from_23casttype (test_array_from_pyobj.test_UINT_gen) ... ok
test_in_from_2casttype (test_array_from_pyobj.test_UINT_gen) ... ok
test_in_from_2seq (test_array_from_pyobj.test_UINT_gen) ... ok
test_inout_2seq (test_array_from_pyobj.test_UINT_gen) ... ok
test_inplace (test_array_from_pyobj.test_UINT_gen) ... ok
test_inplace_from_casttype (test_array_from_pyobj.test_UINT_gen) ... ok
test_optional_from_23seq (test_array_from_pyobj.test_UINT_gen) ... ok
test_optional_from_2seq (test_array_from_pyobj.test_UINT_gen) ... ok
test_optional_none (test_array_from_pyobj.test_UINT_gen) ... ok
test_c_copy_in_from_23casttype (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_c_in_from_23casttype (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_c_in_from_23seq (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_c_inout_23seq (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_cache_hidden (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_f_copy_in_from_23casttype (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_f_in_from_23casttype (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_f_inout_23seq (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_hidden (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_in_cache_from_2casttype (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_in_cache_from_2casttype_failure (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_in_copy_from_2casttype (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_in_from_23casttype (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_in_from_2casttype (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_in_from_2seq (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_inout_2seq (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_inplace (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_inplace_from_casttype (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_optional_from_23seq (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_optional_from_2seq (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_optional_none (test_array_from_pyobj.test_ULONGLONG_gen) ... ok
test_c_copy_in_from_23casttype (test_array_from_pyobj.test_ULONG_gen) ... ok
test_c_in_from_23casttype (test_array_from_pyobj.test_ULONG_gen) ... ok
test_c_in_from_23seq (test_array_from_pyobj.test_ULONG_gen) ... ok
test_c_inout_23seq (test_array_from_pyobj.test_ULONG_gen) ... ok
test_cache_hidden (test_array_from_pyobj.test_ULONG_gen) ... ok
test_f_copy_in_from_23casttype (test_array_from_pyobj.test_ULONG_gen) ... ok
test_f_in_from_23casttype (test_array_from_pyobj.test_ULONG_gen) ... ok
test_f_inout_23seq (test_array_from_pyobj.test_ULONG_gen) ... ok
test_hidden (test_array_from_pyobj.test_ULONG_gen) ... ok
test_in_cache_from_2casttype (test_array_from_pyobj.test_ULONG_gen) ... ok
test_in_cache_from_2casttype_failure (test_array_from_pyobj.test_ULONG_gen) ... ok
test_in_copy_from_2casttype (test_array_from_pyobj.test_ULONG_gen) ... ok
test_in_from_23casttype (test_array_from_pyobj.test_ULONG_gen) ... ok
test_in_from_2casttype (test_array_from_pyobj.test_ULONG_gen) ... ok
test_in_from_2seq (test_array_from_pyobj.test_ULONG_gen) ... ok
test_inout_2seq (test_array_from_pyobj.test_ULONG_gen) ... ok
test_inplace (test_array_from_pyobj.test_ULONG_gen) ... ok
test_inplace_from_casttype (test_array_from_pyobj.test_ULONG_gen) ... ok
test_optional_from_23seq (test_array_from_pyobj.test_ULONG_gen) ... ok
test_optional_from_2seq (test_array_from_pyobj.test_ULONG_gen) ... ok
test_optional_none (test_array_from_pyobj.test_ULONG_gen) ... ok
test_c_copy_in_from_23casttype (test_array_from_pyobj.test_USHORT_gen) ... ok
test_c_in_from_23casttype (test_array_from_pyobj.test_USHORT_gen) ... ok
test_c_in_from_23seq (test_array_from_pyobj.test_USHORT_gen) ... ok
test_c_inout_23seq (test_array_from_pyobj.test_USHORT_gen) ... ok
test_cache_hidden (test_array_from_pyobj.test_USHORT_gen) ... ok
test_f_copy_in_from_23casttype (test_array_from_pyobj.test_USHORT_gen) ... ok
test_f_in_from_23casttype (test_array_from_pyobj.test_USHORT_gen) ... ok
test_f_inout_23seq (test_array_from_pyobj.test_USHORT_gen) ... ok
test_hidden (test_array_from_pyobj.test_USHORT_gen) ... ok
test_in_cache_from_2casttype (test_array_from_pyobj.test_USHORT_gen) ... ok
test_in_cache_from_2casttype_failure (test_array_from_pyobj.test_USHORT_gen) ... ok
test_in_copy_from_2casttype (test_array_from_pyobj.test_USHORT_gen) ... ok
test_in_from_23casttype (test_array_from_pyobj.test_USHORT_gen) ... ok
test_in_from_2casttype (test_array_from_pyobj.test_USHORT_gen) ... ok
test_in_from_2seq (test_array_from_pyobj.test_USHORT_gen) ... ok
test_inout_2seq (test_array_from_pyobj.test_USHORT_gen) ... ok
test_inplace (test_array_from_pyobj.test_USHORT_gen) ... ok
test_inplace_from_casttype (test_array_from_pyobj.test_USHORT_gen) ... ok
test_optional_from_23seq (test_array_from_pyobj.test_USHORT_gen) ... ok
test_optional_from_2seq (test_array_from_pyobj.test_USHORT_gen) ... ok
test_optional_none (test_array_from_pyobj.test_USHORT_gen) ... ok
test_in_out (test_array_from_pyobj.test_intent) ... ok
test_callback.TestF77Callback.test_string_callback ... ok
test_basic (test_fftpack.TestFFT1D) ... ok
test_fft_n (test_fftpack.TestFFTShift) ... ok
test_definition (test_helper.TestFFTFreq) ... ok
test_axes_keyword (test_helper.TestFFTShift) ... ok
test_definition (test_helper.TestFFTShift) ... ok
test_inverse (test_helper.TestFFTShift) ... ok
test_not_last_axis_success (test_helper.TestIRFFTN) ... ok
test_definition (test_helper.TestRFFTFreq) ... ok
test_InvalidFile (test__datasource.TestDataSourceAbspath) ... ok
test_InvalidHTTP (test__datasource.TestDataSourceAbspath) ... ok
test_ValidFile (test__datasource.TestDataSourceAbspath) ... ok
test_ValidHTTP (test__datasource.TestDataSourceAbspath) ... ok
test_sandboxing (test__datasource.TestDataSourceAbspath) ... ok
test_windows_os_sep (test__datasource.TestDataSourceAbspath) ... ok
test_InvalidFile (test__datasource.TestDataSourceExists) ... ok
test_InvalidHTTP (test__datasource.TestDataSourceExists) ... ok
test_ValidFile (test__datasource.TestDataSourceExists) ... ok
test_ValidHTTP (test__datasource.TestDataSourceExists) ... ok
test_InvalidFile (test__datasource.TestDataSourceOpen) ... ok
test_InvalidHTTP (test__datasource.TestDataSourceOpen) ... ok
test_InvalidHTTPCacheURLError (test__datasource.TestDataSourceOpen) ... ok
test_ValidBz2File (test__datasource.TestDataSourceOpen) ... ok
test_ValidFile (test__datasource.TestDataSourceOpen) ... ok
test_ValidGzipFile (test__datasource.TestDataSourceOpen) ... ok
test_ValidHTTP (test__datasource.TestDataSourceOpen) ... ok
test_DataSourceOpen (test__datasource.TestOpenFunc) ... ok
test_ValidHTTP (test__datasource.TestRepositoryAbspath) ... ok
test_sandboxing (test__datasource.TestRepositoryAbspath) ... ok
test_windows_os_sep (test__datasource.TestRepositoryAbspath) ... ok
test_CachedHTTPFile (test__datasource.TestRepositoryExists) ... ok
test_InvalidFile (test__datasource.TestRepositoryExists) ... ok
test_RemoveHTTPFile (test__datasource.TestRepositoryExists) ... ok
test_ValidFile (test__datasource.TestRepositoryExists) ... ok
Test LineSplitter w/ fixed-width fields ... ok
Test LineSplitter w/o delimiter ... ok
Test LineSplitter on delimiter ... ok
Test space delimiter ... ok
Test tab delimiter ... ok
test_variable_fixed_width (test__iotools.TestLineSplitter) ... ok
Test ndtype on dtypes ... ok
Testing flatten_dtype ... ok
Test has_nested_dtype ... ok
Test case sensitivity ... ok
Test excludelist ... ok
Test validate missing names ... ok
Test validate nb names ... ok
Test validate no names ... ok
Test creation of a StringConverter ... ok
Check that int64 integer types can be specified ... ok
Make sure we don't lose an explicit default ... ok
Check that we don't lose a default of 0 ... ok
Check that we're not losing missing values ... ok
Tests the use of missing values. ... ok
Make sure that string-to-object functions are properly recognized ... ok
Check that uint64 integer types can be specified ... ok
Tests the upgrade method. ... ok
Tests updatemapper ... ok
test_check_constant (test_arraypad.TestConstant) ... ok
test_check_simple (test_arraypad.TestEdge) ... ok
test_check_simple (test_arraypad.TestLinearRamp) ... ok
test_check_01 (test_arraypad.TestReflect) ... ok
test_check_02 (test_arraypad.TestReflect) ... ok
test_check_03 (test_arraypad.TestReflect) ... ok
test_check_large_pad (test_arraypad.TestReflect) ... ok
test_check_shape (test_arraypad.TestReflect) ... ok
test_check_simple (test_arraypad.TestReflect) ... ok
test_check_simple (test_arraypad.TestStatLen) ... ok
test_check_maximum_1 (test_arraypad.TestStatistic) ... ok
test_check_maximum_2 (test_arraypad.TestStatistic) ... ok
test_check_mean_2 (test_arraypad.TestStatistic) ... ok
test_check_mean_shape_one (test_arraypad.TestStatistic) ... ok
test_check_mean_stat_length (test_arraypad.TestStatistic) ... ok
test_check_median (test_arraypad.TestStatistic) ... ok
test_check_median_01 (test_arraypad.TestStatistic) ... ok
test_check_median_02 (test_arraypad.TestStatistic) ... ok
test_check_minimum_1 (test_arraypad.TestStatistic) ... ok
test_check_minimum_2 (test_arraypad.TestStatistic) ... ok
test_check_01 (test_arraypad.TestWrap) ... ok
test_check_02 (test_arraypad.TestWrap) ... ok
test_check_large_pad (test_arraypad.TestWrap) ... ok
test_check_simple (test_arraypad.TestWrap) ... ok
test_zero_pad_width (test_arraypad.TestZeroPadWidth) ... ok
test_check_negative_pad_width (test_arraypad.ValueError1) ... ok
test_check_negative_stat_length (test_arraypad.ValueError1) ... ok
test_check_simple (test_arraypad.ValueError1) ... ok
test_check_simple (test_arraypad.ValueError2) ... ok
test_check_simple (test_arraypad.ValueError3) ... ok
test_ediff1d (test_arraysetops.TestSetOps) ... ok
test_in1d (test_arraysetops.TestSetOps) ... ok
test_in1d_char_array (test_arraysetops.TestSetOps) ... ok
Test in1d's invert parameter ... ok
test_in1d_ravel (test_arraysetops.TestSetOps) ... ok
test_intersect1d (test_arraysetops.TestSetOps) ... ok
test_manyways (test_arraysetops.TestSetOps) ... ok
test_setdiff1d (test_arraysetops.TestSetOps) ... ok
test_setdiff1d_char_array (test_arraysetops.TestSetOps) ... ok
test_setxor1d (test_arraysetops.TestSetOps) ... ok
test_union1d (test_arraysetops.TestSetOps) ... ok
test_unique (test_arraysetops.TestSetOps) ... ok
test_arrayterator.test ... ok
test_broadcast (test_financial.TestFinancial) ... ok
test_fv (test_financial.TestFinancial) ... ok
test_ipmt (test_financial.TestFinancial) ... ok
test_irr (test_financial.TestFinancial) ... ok
test_mirr (test_financial.TestFinancial) ... ok
test_nper (test_financial.TestFinancial) ... ok
test_nper2 (test_financial.TestFinancial) ... ok
test_npv (test_financial.TestFinancial) ... ok
test_pmt (test_financial.TestFinancial) ... ok
test_ppmt (test_financial.TestFinancial) ... ok
test_pv (test_financial.TestFinancial) ... ok
test_rate (test_financial.TestFinancial) ... ok
test_when (test_financial.TestFinancial) ... ok
test_format.test_roundtrip(array([], dtype=uint8), array([], dtype=uint8)) ... ok
test_format.test_roundtrip(array(10, dtype=uint8), array(10, dtype=uint8)) ... ok
test_format.test_roundtrip(array([ 0, 1, 2, ..., 217, 218, 219], dtype=uint8), array([ 0, 1, 2, ..., 217, 218, 219], dtype=uint8)) ... ok
test_format.test_roundtrip(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip(array([[ 0, 50, 100, ..., 70, 120, 170], ... ok
test_format.test_roundtrip(array([[170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, ... ok
test_format.test_roundtrip(array([], dtype=uint8), array([], dtype=uint8)) ... ok
test_format.test_roundtrip(array(10, dtype=uint8), array(10, dtype=uint8)) ... ok
test_format.test_roundtrip(array([ 0, 1, 2, ..., 217, 218, 219], dtype=uint8), array([ 0, 1, 2, ..., 217, 218, 219], dtype=uint8)) ... ok
test_format.test_roundtrip(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip(array([[ 0, 50, 100, ..., 70, 120, 170], ... ok
test_format.test_roundtrip(array([[170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, ... ok
test_format.test_roundtrip(array([], dtype=int8), array([], dtype=int8)) ... ok
test_format.test_roundtrip(array(10, dtype=int8), array(10, dtype=int8)) ... ok
test_format.test_roundtrip(array([ 0, 1, 2, ..., -39, -38, -37], dtype=int8), array([ 0, 1, 2, ..., -39, -38, -37], dtype=int8)) ... ok
test_format.test_roundtrip(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip(array([[ 0, 50, 100, ..., 70, 120, -86], ... ok
test_format.test_roundtrip(array([[-86, -84, -82, -80, -78, -76, -74, -72, -70, -68, -66, -64, -62, ... ok
test_format.test_roundtrip(array([], dtype=int8), array([], dtype=int8)) ... ok
test_format.test_roundtrip(array(10, dtype=int8), array(10, dtype=int8)) ... ok
test_format.test_roundtrip(array([ 0, 1, 2, ..., -39, -38, -37], dtype=int8), array([ 0, 1, 2, ..., -39, -38, -37], dtype=int8)) ... ok
test_format.test_roundtrip(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip(array([[ 0, 50, 100, ..., 70, 120, -86], ... ok
test_format.test_roundtrip(array([[-86, -84, -82, -80, -78, -76, -74, -72, -70, -68, -66, -64, -62, ... ok
test_format.test_roundtrip(array([], dtype=uint16), array([], dtype=uint16)) ... ok
test_format.test_roundtrip(array(10, dtype=uint16), array(10, dtype=uint16)) ... ok
test_format.test_roundtrip(array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint16), array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint16)) ... ok
test_format.test_roundtrip(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip(array([], dtype=uint16), array([], dtype=uint16)) ... ok
test_format.test_roundtrip(array(10, dtype=uint16), array(10, dtype=uint16)) ... ok
test_format.test_roundtrip(array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint16), array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint16)) ... ok
test_format.test_roundtrip(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip(array([], dtype=int16), array([], dtype=int16)) ... ok
test_format.test_roundtrip(array(10, dtype=int16), array(10, dtype=int16)) ... ok
test_format.test_roundtrip(array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=int16), array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=int16)) ... ok
test_format.test_roundtrip(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip(array([], dtype=int16), array([], dtype=int16)) ... ok
test_format.test_roundtrip(array(10, dtype=int16), array(10, dtype=int16)) ... ok
test_format.test_roundtrip(array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=int16), array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=int16)) ... ok
test_format.test_roundtrip(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip(array([], dtype=uint32), array([], dtype=uint32)) ... ok
test_format.test_roundtrip(array(10L, dtype=uint32), array(10L, dtype=uint32)) ... ok
test_format.test_roundtrip(array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint32), array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint32)) ... ok
test_format.test_roundtrip(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip(array([], dtype=uint32), array([], dtype=uint32)) ... ok
test_format.test_roundtrip(array(10L, dtype=uint32), array(10L, dtype=uint32)) ... ok
test_format.test_roundtrip(array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint32), array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint32)) ... ok
test_format.test_roundtrip(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip(array([], dtype=int32), array([], dtype=int32)) ... ok
test_format.test_roundtrip(array(10, dtype=int32), array(10, dtype=int32)) ... ok
test_format.test_roundtrip(array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=int32), array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=int32)) ... ok
test_format.test_roundtrip(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip(array([], dtype=int32), array([], dtype=int32)) ... ok
test_format.test_roundtrip(array(10, dtype=int32), array(10, dtype=int32)) ... ok
test_format.test_roundtrip(array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=int32), array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=int32)) ... ok
test_format.test_roundtrip(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip(array([], dtype=uint64), array([], dtype=uint64)) ... ok
test_format.test_roundtrip(array(10L, dtype=uint64), array(10L, dtype=uint64)) ... ok
test_format.test_roundtrip(array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint64), array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint64)) ... ok
test_format.test_roundtrip(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip(array([], dtype=uint64), array([], dtype=uint64)) ... ok
test_format.test_roundtrip(array(10L, dtype=uint64), array(10L, dtype=uint64)) ... ok
test_format.test_roundtrip(array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint64), array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint64)) ... ok
test_format.test_roundtrip(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip(array([], dtype=int64), array([], dtype=int64)) ... ok
test_format.test_roundtrip(array(10), array(10)) ... ok
test_format.test_roundtrip(array([ 0, 1, 2, ..., 1497, 1498, 1499]), array([ 0, 1, 2, ..., 1497, 1498, 1499])) ... ok
test_format.test_roundtrip(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip(array([], dtype=int64), array([], dtype=int64)) ... ok
test_format.test_roundtrip(array(10), array(10)) ... ok
test_format.test_roundtrip(array([ 0, 1, 2, ..., 1497, 1498, 1499]), array([ 0, 1, 2, ..., 1497, 1498, 1499])) ... ok
test_format.test_roundtrip(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip(array([], dtype=float32), array([], dtype=float32)) ... ok
test_format.test_roundtrip(array(10.0, dtype=float32), array(10.0, dtype=float32)) ... ok
test_format.test_roundtrip(array([ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip(array([[ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip(array([[ 0.00000000e+00, 5.00000000e+01, 1.00000000e+02, ..., ... ok
test_format.test_roundtrip(array([[ 1450., 1452., 1454., 1456., 1458., 1460., 1462., 1464., ... ok
test_format.test_roundtrip(array([], dtype=float32), array([], dtype=float32)) ... ok
test_format.test_roundtrip(array(10.0, dtype=float32), array(10.0, dtype=float32)) ... ok
test_format.test_roundtrip(array([ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip(array([[ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip(array([[ 0.00000000e+00, 5.00000000e+01, 1.00000000e+02, ..., ... ok
test_format.test_roundtrip(array([[ 1450., 1452., 1454., 1456., 1458., 1460., 1462., 1464., ... ok
test_format.test_roundtrip(array([], dtype=float64), array([], dtype=float64)) ... ok
test_format.test_roundtrip(array(10.0), array(10.0)) ... ok
test_format.test_roundtrip(array([ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip(array([[ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip(array([[ 0.00000000e+00, 5.00000000e+01, 1.00000000e+02, ..., ... ok
test_format.test_roundtrip(array([[ 1450., 1452., 1454., 1456., 1458., 1460., 1462., 1464., ... ok
test_format.test_roundtrip(array([], dtype=float64), array([], dtype=float64)) ... ok
test_format.test_roundtrip(array(10.0), array(10.0)) ... ok
test_format.test_roundtrip(array([ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip(array([[ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip(array([[ 0.00000000e+00, 5.00000000e+01, 1.00000000e+02, ..., ... ok
test_format.test_roundtrip(array([[ 1450., 1452., 1454., 1456., 1458., 1460., 1462., 1464., ... ok
test_format.test_roundtrip(array([], dtype=complex64), array([], dtype=complex64)) ... ok
test_format.test_roundtrip(array((10+0j), dtype=complex64), array((10+0j), dtype=complex64)) ... ok
test_format.test_roundtrip(array([ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip(array([[ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip(array([[ 0.00000000e+00+0.j, 5.00000000e+01+0.j, 1.00000000e+02+0.j, ... ok
test_format.test_roundtrip(array([[ 1450.+0.j, 1452.+0.j, 1454.+0.j, 1456.+0.j, 1458.+0.j, ... ok
test_format.test_roundtrip(array([], dtype=complex64), array([], dtype=complex64)) ... ok
test_format.test_roundtrip(array((10+0j), dtype=complex64), array((10+0j), dtype=complex64)) ... ok
test_format.test_roundtrip(array([ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip(array([[ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip(array([[ 0.00000000e+00+0.j, 5.00000000e+01+0.j, 1.00000000e+02+0.j, ... ok
test_format.test_roundtrip(array([[ 1450.+0.j, 1452.+0.j, 1454.+0.j, 1456.+0.j, 1458.+0.j, ... ok
test_format.test_roundtrip(array([], dtype=complex128), array([], dtype=complex128)) ... ok
test_format.test_roundtrip(array((10+0j)), array((10+0j))) ... ok
test_format.test_roundtrip(array([ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip(array([[ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip(array([[ 0.00000000e+00+0.j, 5.00000000e+01+0.j, 1.00000000e+02+0.j, ... ok
test_format.test_roundtrip(array([[ 1450.+0.j, 1452.+0.j, 1454.+0.j, 1456.+0.j, 1458.+0.j, ... ok
test_format.test_roundtrip(array([], dtype=complex128), array([], dtype=complex128)) ... ok
test_format.test_roundtrip(array((10+0j)), array((10+0j))) ... ok
test_format.test_roundtrip(array([ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip(array([[ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip(array([[ 0.00000000e+00+0.j, 5.00000000e+01+0.j, 1.00000000e+02+0.j, ... ok
test_format.test_roundtrip(array([[ 1450.+0.j, 1452.+0.j, 1454.+0.j, 1456.+0.j, 1458.+0.j, ... ok
test_format.test_roundtrip(array([], dtype=object), array([], dtype=object)) ... ok
test_format.test_roundtrip(array(10, dtype=object), array(10, dtype=object)) ... ok
test_format.test_roundtrip(array([0, 1, 2, ..., 1497, 1498, 1499], dtype=object), array([0, 1, 2, ..., 1497, 1498, 1499], dtype=object)) ... ok
test_format.test_roundtrip(array([[0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip(array([[0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip(array([], dtype=object), array([], dtype=object)) ... ok
test_format.test_roundtrip(array(10, dtype=object), array(10, dtype=object)) ... ok
test_format.test_roundtrip(array([0, 1, 2, ..., 1497, 1498, 1499], dtype=object), array([0, 1, 2, ..., 1497, 1498, 1499], dtype=object)) ... ok
test_format.test_roundtrip(array([[0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip(array([[0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip(array([([3, 2], [[6.0, 4.0], [6.0, 4.0]], 8), ... ok
test_format.test_roundtrip(array([ ([3, 2], (6j, 6.0, ('nn', [6j, 4j], [6.0, 4.0], [1L, 2L]), 'NN', True), 'cc', (u'NN', 6j), [[6.0, 4.0], [6.0, 4.0]], 8), ... ok
test_format.test_roundtrip(array([([3, 2], [[6.0, 4.0], [6.0, 4.0]], 8), ... ok
test_format.test_roundtrip(array([ ([3, 2], (6j, 6.0, ('nn', [6j, 4j], [6.0, 4.0], [1L, 2L]), 'NN', True), 'cc', (u'NN', 6j), [[6.0, 4.0], [6.0, 4.0]], 8), ... ok
test_format.test_roundtrip_randsize(array([], dtype=uint8), array([], dtype=uint8)) ... ok
test_format.test_roundtrip_randsize(array(10, dtype=uint8), array(10, dtype=uint8)) ... ok
test_format.test_roundtrip_randsize(array([ 0, 1, 2, ..., 217, 218, 219], dtype=uint8), array([ 0, 1, 2, ..., 217, 218, 219], dtype=uint8)) ... ok
test_format.test_roundtrip_randsize(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_randsize(array([[ 0, 50, 100, ..., 70, 120, 170], ... ok
test_format.test_roundtrip_randsize(array([[170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, ... ok
test_format.test_roundtrip_randsize(array([], dtype=uint8), array([], dtype=uint8)) ... ok
test_format.test_roundtrip_randsize(array(10, dtype=uint8), array(10, dtype=uint8)) ... ok
test_format.test_roundtrip_randsize(array([ 0, 1, 2, ..., 217, 218, 219], dtype=uint8), array([ 0, 1, 2, ..., 217, 218, 219], dtype=uint8)) ... ok
test_format.test_roundtrip_randsize(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_randsize(array([[ 0, 50, 100, ..., 70, 120, 170], ... ok
test_format.test_roundtrip_randsize(array([[170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, ... ok
test_format.test_roundtrip_randsize(array([], dtype=int8), array([], dtype=int8)) ... ok
test_format.test_roundtrip_randsize(array(10, dtype=int8), array(10, dtype=int8)) ... ok
test_format.test_roundtrip_randsize(array([ 0, 1, 2, ..., -39, -38, -37], dtype=int8), array([ 0, 1, 2, ..., -39, -38, -37], dtype=int8)) ... ok
test_format.test_roundtrip_randsize(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_randsize(array([[ 0, 50, 100, ..., 70, 120, -86], ... ok
test_format.test_roundtrip_randsize(array([[-86, -84, -82, -80, -78, -76, -74, -72, -70, -68, -66, -64, -62, ... ok
test_format.test_roundtrip_randsize(array([], dtype=int8), array([], dtype=int8)) ... ok
test_format.test_roundtrip_randsize(array(10, dtype=int8), array(10, dtype=int8)) ... ok
test_format.test_roundtrip_randsize(array([ 0, 1, 2, ..., -39, -38, -37], dtype=int8), array([ 0, 1, 2, ..., -39, -38, -37], dtype=int8)) ... ok
test_format.test_roundtrip_randsize(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_randsize(array([[ 0, 50, 100, ..., 70, 120, -86], ... ok
test_format.test_roundtrip_randsize(array([[-86, -84, -82, -80, -78, -76, -74, -72, -70, -68, -66, -64, -62, ... ok
test_format.test_roundtrip_randsize(array([], dtype=uint16), array([], dtype=uint16)) ... ok
test_format.test_roundtrip_randsize(array(10, dtype=uint16), array(10, dtype=uint16)) ... ok
test_format.test_roundtrip_randsize(array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint16), array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint16)) ... ok
test_format.test_roundtrip_randsize(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_randsize(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_randsize(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_randsize(array([], dtype=uint16), array([], dtype=uint16)) ... ok
test_format.test_roundtrip_randsize(array(10, dtype=uint16), array(10, dtype=uint16)) ... ok
test_format.test_roundtrip_randsize(array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint16), array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint16)) ... ok
test_format.test_roundtrip_randsize(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_randsize(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_randsize(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_randsize(array([], dtype=int16), array([], dtype=int16)) ... ok
test_format.test_roundtrip_randsize(array(10, dtype=int16), array(10, dtype=int16)) ... ok
test_format.test_roundtrip_randsize(array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=int16), array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=int16)) ... ok
test_format.test_roundtrip_randsize(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_randsize(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_randsize(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_randsize(array([], dtype=int16), array([], dtype=int16)) ... ok
test_format.test_roundtrip_randsize(array(10, dtype=int16), array(10, dtype=int16)) ... ok
test_format.test_roundtrip_randsize(array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=int16), array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=int16)) ... ok
test_format.test_roundtrip_randsize(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_randsize(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_randsize(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_randsize(array([], dtype=uint32), array([], dtype=uint32)) ... ok
test_format.test_roundtrip_randsize(array(10L, dtype=uint32), array(10L, dtype=uint32)) ... ok
test_format.test_roundtrip_randsize(array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint32), array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint32)) ... ok
test_format.test_roundtrip_randsize(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_randsize(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_randsize(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_randsize(array([], dtype=uint32), array([], dtype=uint32)) ... ok
test_format.test_roundtrip_randsize(array(10L, dtype=uint32), array(10L, dtype=uint32)) ... ok
test_format.test_roundtrip_randsize(array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint32), array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint32)) ... ok
test_format.test_roundtrip_randsize(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_randsize(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_randsize(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_randsize(array([], dtype=int32), array([], dtype=int32)) ... ok
test_format.test_roundtrip_randsize(array(10, dtype=int32), array(10, dtype=int32)) ... ok
test_format.test_roundtrip_randsize(array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=int32), array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=int32)) ... ok
test_format.test_roundtrip_randsize(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_randsize(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_randsize(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_randsize(array([], dtype=int32), array([], dtype=int32)) ... ok
test_format.test_roundtrip_randsize(array(10, dtype=int32), array(10, dtype=int32)) ... ok
test_format.test_roundtrip_randsize(array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=int32), array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=int32)) ... ok
test_format.test_roundtrip_randsize(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_randsize(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_randsize(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_randsize(array([], dtype=uint64), array([], dtype=uint64)) ... ok
test_format.test_roundtrip_randsize(array(10L, dtype=uint64), array(10L, dtype=uint64)) ... ok
test_format.test_roundtrip_randsize(array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint64), array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint64)) ... ok
test_format.test_roundtrip_randsize(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_randsize(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_randsize(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_randsize(array([], dtype=uint64), array([], dtype=uint64)) ... ok
test_format.test_roundtrip_randsize(array(10L, dtype=uint64), array(10L, dtype=uint64)) ... ok
test_format.test_roundtrip_randsize(array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint64), array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint64)) ... ok
test_format.test_roundtrip_randsize(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_randsize(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_randsize(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_randsize(array([], dtype=int64), array([], dtype=int64)) ... ok
test_format.test_roundtrip_randsize(array(10), array(10)) ... ok
test_format.test_roundtrip_randsize(array([ 0, 1, 2, ..., 1497, 1498, 1499]), array([ 0, 1, 2, ..., 1497, 1498, 1499])) ... ok
test_format.test_roundtrip_randsize(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_randsize(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_randsize(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_randsize(array([], dtype=int64), array([], dtype=int64)) ... ok
test_format.test_roundtrip_randsize(array(10), array(10)) ... ok
test_format.test_roundtrip_randsize(array([ 0, 1, 2, ..., 1497, 1498, 1499]), array([ 0, 1, 2, ..., 1497, 1498, 1499])) ... ok
test_format.test_roundtrip_randsize(array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_randsize(array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_randsize(array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_randsize(array([], dtype=float32), array([], dtype=float32)) ... ok
test_format.test_roundtrip_randsize(array(10.0, dtype=float32), array(10.0, dtype=float32)) ... ok
test_format.test_roundtrip_randsize(array([ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip_randsize(array([[ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip_randsize(array([[ 0.00000000e+00, 5.00000000e+01, 1.00000000e+02, ..., ... ok
test_format.test_roundtrip_randsize(array([[ 1450., 1452., 1454., 1456., 1458., 1460., 1462., 1464., ... ok
test_format.test_roundtrip_randsize(array([], dtype=float32), array([], dtype=float32)) ... ok
test_format.test_roundtrip_randsize(array(10.0, dtype=float32), array(10.0, dtype=float32)) ... ok
test_format.test_roundtrip_randsize(array([ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip_randsize(array([[ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip_randsize(array([[ 0.00000000e+00, 5.00000000e+01, 1.00000000e+02, ..., ... ok
test_format.test_roundtrip_randsize(array([[ 1450., 1452., 1454., 1456., 1458., 1460., 1462., 1464., ... ok
test_format.test_roundtrip_randsize(array([], dtype=float64), array([], dtype=float64)) ... ok
test_format.test_roundtrip_randsize(array(10.0), array(10.0)) ... ok
test_format.test_roundtrip_randsize(array([ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip_randsize(array([[ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip_randsize(array([[ 0.00000000e+00, 5.00000000e+01, 1.00000000e+02, ..., ... ok
test_format.test_roundtrip_randsize(array([[ 1450., 1452., 1454., 1456., 1458., 1460., 1462., 1464., ... ok
test_format.test_roundtrip_randsize(array([], dtype=float64), array([], dtype=float64)) ... ok
test_format.test_roundtrip_randsize(array(10.0), array(10.0)) ... ok
test_format.test_roundtrip_randsize(array([ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip_randsize(array([[ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip_randsize(array([[ 0.00000000e+00, 5.00000000e+01, 1.00000000e+02, ..., ... ok
test_format.test_roundtrip_randsize(array([[ 1450., 1452., 1454., 1456., 1458., 1460., 1462., 1464., ... ok
test_format.test_roundtrip_randsize(array([], dtype=complex64), array([], dtype=complex64)) ... ok
test_format.test_roundtrip_randsize(array((10+0j), dtype=complex64), array((10+0j), dtype=complex64)) ... ok
test_format.test_roundtrip_randsize(array([ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip_randsize(array([[ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip_randsize(array([[ 0.00000000e+00+0.j, 5.00000000e+01+0.j, 1.00000000e+02+0.j, ... ok
test_format.test_roundtrip_randsize(array([[ 1450.+0.j, 1452.+0.j, 1454.+0.j, 1456.+0.j, 1458.+0.j, ... ok
test_format.test_roundtrip_randsize(array([], dtype=complex64), array([], dtype=complex64)) ... ok
test_format.test_roundtrip_randsize(array((10+0j), dtype=complex64), array((10+0j), dtype=complex64)) ... ok
test_format.test_roundtrip_randsize(array([ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip_randsize(array([[ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip_randsize(array([[ 0.00000000e+00+0.j, 5.00000000e+01+0.j, 1.00000000e+02+0.j, ... ok
test_format.test_roundtrip_randsize(array([[ 1450.+0.j, 1452.+0.j, 1454.+0.j, 1456.+0.j, 1458.+0.j, ... ok
test_format.test_roundtrip_randsize(array([], dtype=complex128), array([], dtype=complex128)) ... ok
test_format.test_roundtrip_randsize(array((10+0j)), array((10+0j))) ... ok
test_format.test_roundtrip_randsize(array([ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip_randsize(array([[ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip_randsize(array([[ 0.00000000e+00+0.j, 5.00000000e+01+0.j, 1.00000000e+02+0.j, ... ok
test_format.test_roundtrip_randsize(array([[ 1450.+0.j, 1452.+0.j, 1454.+0.j, 1456.+0.j, 1458.+0.j, ... ok
test_format.test_roundtrip_randsize(array([], dtype=complex128), array([], dtype=complex128)) ... ok
test_format.test_roundtrip_randsize(array((10+0j)), array((10+0j))) ... ok
test_format.test_roundtrip_randsize(array([ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip_randsize(array([[ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip_randsize(array([[ 0.00000000e+00+0.j, 5.00000000e+01+0.j, 1.00000000e+02+0.j, ... ok
test_format.test_roundtrip_randsize(array([[ 1450.+0.j, 1452.+0.j, 1454.+0.j, 1456.+0.j, 1458.+0.j, ... ok
test_format.test_roundtrip_randsize(array([([3, 2], [[6.0, 4.0], [6.0, 4.0]], 8), ... ok
test_format.test_roundtrip_randsize(array([ ([3, 2], (6j, 6.0, ('nn', [6j, 4j], [6.0, 4.0], [1L, 2L]), 'NN', True), 'cc', (u'NN', 6j), [[6.0, 4.0], [6.0, 4.0]], 8), ... ok
test_format.test_roundtrip_randsize(array([([3, 2], [[6.0, 4.0], [6.0, 4.0]], 8), ... ok
test_format.test_roundtrip_randsize(array([ ([3, 2], (6j, 6.0, ('nn', [6j, 4j], [6.0, 4.0], [1L, 2L]), 'NN', True), 'cc', (u'NN', 6j), [[6.0, 4.0], [6.0, 4.0]], 8), ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=uint8)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array(10, dtype=uint8)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0, 1, 2, ..., 217, 218, 219], dtype=uint8)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 50, 100, ..., 70, 120, 170], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=uint8)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array(10, dtype=uint8)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0, 1, 2, ..., 217, 218, 219], dtype=uint8)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 50, 100, ..., 70, 120, 170], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=int8)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array(10, dtype=int8)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0, 1, 2, ..., -39, -38, -37], dtype=int8)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 50, 100, ..., 70, 120, -86], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[-86, -84, -82, -80, -78, -76, -74, -72, -70, -68, -66, -64, -62, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=int8)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array(10, dtype=int8)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0, 1, 2, ..., -39, -38, -37], dtype=int8)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 50, 100, ..., 70, 120, -86], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[-86, -84, -82, -80, -78, -76, -74, -72, -70, -68, -66, -64, -62, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=uint16)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array(10, dtype=uint16)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint16)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=uint16)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array(10, dtype=uint16)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint16)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=int16)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array(10, dtype=int16)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=int16)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=int16)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array(10, dtype=int16)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=int16)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=uint32)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array(10L, dtype=uint32)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint32)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=uint32)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array(10L, dtype=uint32)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint32)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=int32)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array(10, dtype=int32)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=int32)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=int32)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array(10, dtype=int32)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=int32)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=uint64)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array(10L, dtype=uint64)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint64)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=uint64)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array(10L, dtype=uint64)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0, 1, 2, ..., 1497, 1498, 1499], dtype=uint64)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=int64)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array(10)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0, 1, 2, ..., 1497, 1498, 1499])) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=int64)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array(10)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0, 1, 2, ..., 1497, 1498, 1499])) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 1, 2, ..., 47, 48, 49], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0, 50, 100, ..., 1350, 1400, 1450], ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=float32)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array(10.0, dtype=float32)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0.00000000e+00, 5.00000000e+01, 1.00000000e+02, ..., ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 1450., 1452., 1454., 1456., 1458., 1460., 1462., 1464., ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=float32)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array(10.0, dtype=float32)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0.00000000e+00, 5.00000000e+01, 1.00000000e+02, ..., ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 1450., 1452., 1454., 1456., 1458., 1460., 1462., 1464., ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=float64)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array(10.0)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0.00000000e+00, 5.00000000e+01, 1.00000000e+02, ..., ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 1450., 1452., 1454., 1456., 1458., 1460., 1462., 1464., ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=float64)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array(10.0)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0.00000000e+00, 1.00000000e+00, 2.00000000e+00, ..., ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0.00000000e+00, 5.00000000e+01, 1.00000000e+02, ..., ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 1450., 1452., 1454., 1456., 1458., 1460., 1462., 1464., ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=complex64)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array((10+0j), dtype=complex64)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0.00000000e+00+0.j, 5.00000000e+01+0.j, 1.00000000e+02+0.j, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 1450.+0.j, 1452.+0.j, 1454.+0.j, 1456.+0.j, 1458.+0.j, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=complex64)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array((10+0j), dtype=complex64)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0.00000000e+00+0.j, 5.00000000e+01+0.j, 1.00000000e+02+0.j, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 1450.+0.j, 1452.+0.j, 1454.+0.j, 1456.+0.j, 1458.+0.j, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=complex128)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array((10+0j))) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0.00000000e+00+0.j, 5.00000000e+01+0.j, 1.00000000e+02+0.j, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 1450.+0.j, 1452.+0.j, 1454.+0.j, 1456.+0.j, 1458.+0.j, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([], dtype=complex128)) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array((10+0j))) ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0.00000000e+00+0.j, 1.00000000e+00+0.j, 2.00000000e+00+0.j, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 0.00000000e+00+0.j, 5.00000000e+01+0.j, 1.00000000e+02+0.j, ... ok
test_format.test_roundtrip_truncated(<type 'exceptions.ValueError'>, <function roundtrip_truncated at 0x1369d050>, array([[ 1450.+0.j, 1452.+0.j, 1454.+0.j, 1456.+0.j, 1458.+0.j, ... ok
test_format.test_long_str ... ok
test_format.test_compressed_roundtrip ... ok
test_format.test_write_version_1_0 ... ok
test_format.test_read_magic_bad_magic(<_io.BytesIO object at 0x137d3710>,) ... ok
test_format.test_read_magic_bad_magic(<_io.BytesIO object at 0x137d34d0>,) ... ok
test_format.test_read_magic_bad_magic(<_io.BytesIO object at 0x137d3170>,) ... ok
test_format.test_read_magic_bad_magic(<_io.BytesIO object at 0x137d31d0>,) ... ok
test_format.test_read_magic_bad_magic(<_io.BytesIO object at 0x137d3110>,) ... ok
test_format.test_read_magic_bad_magic(<_io.BytesIO object at 0x137d3230>,) ... ok
test_format.test_read_magic_bad_magic(<_io.BytesIO object at 0x137d3290>,) ... ok
test_format.test_read_version_1_0_bad_magic(<_io.BytesIO object at 0x137d3350>,) ... ok
test_format.test_read_version_1_0_bad_magic(<_io.BytesIO object at 0x137d33b0>,) ... ok
test_format.test_read_version_1_0_bad_magic(<_io.BytesIO object at 0x137d3410>,) ... ok
test_format.test_read_version_1_0_bad_magic(<_io.BytesIO object at 0x137d3470>,) ... ok
test_format.test_read_version_1_0_bad_magic(<_io.BytesIO object at 0x137d37d0>,) ... ok
test_format.test_read_version_1_0_bad_magic(<_io.BytesIO object at 0x137d3650>,) ... ok
test_format.test_read_version_1_0_bad_magic(<_io.BytesIO object at 0x137d38f0>,) ... ok
test_format.test_read_version_1_0_bad_magic(<_io.BytesIO object at 0x137d3a70>,) ... ok
test_format.test_read_version_1_0_bad_magic(<_io.BytesIO object at 0x137d3e90>,) ... ok
test_format.test_read_version_1_0_bad_magic(<_io.BytesIO object at 0x137d3950>,) ... ok
test_format.test_read_version_1_0_bad_magic(<_io.BytesIO object at 0x137d39b0>,) ... ok
test_format.test_read_version_1_0_bad_magic(<_io.BytesIO object at 0x137d3a10>,) ... ok
test_format.test_read_version_1_0_bad_magic(<_io.BytesIO object at 0x137d39b0>,) ... ok
test_format.test_bad_magic_args ... ok
test_format.test_large_header ... ok
test_format.test_bad_header ... ok
test_format.test_large_file_support ... ok
test_add_doc (test_function_base.TestAdd_newdoc) ... ok
test_string_arg (test_function_base.TestAdd_newdoc_ufunc) ... ok
test_ufunc_arg (test_function_base.TestAdd_newdoc_ufunc) ... ok
test_basic (test_function_base.TestAll) ... ok
test_nd (test_function_base.TestAll) ... ok
test_basic (test_function_base.TestAmax) ... ok
test_basic (test_function_base.TestAmin) ... ok
test_basic (test_function_base.TestAngle) ... ok
test_basic (test_function_base.TestAny) ... ok
test_nd (test_function_base.TestAny) ... ok
test_basic (test_function_base.TestAverage) ... ok
test_returned (test_function_base.TestAverage) ... ok
test_weights (test_function_base.TestAverage) ... ok
test_empty (test_function_base.TestBincount) ... ok
test_empty_with_minlength (test_function_base.TestBincount) ... ok
test_simple (test_function_base.TestBincount) ... ok
test_simple2 (test_function_base.TestBincount) ... ok
test_simple_weight (test_function_base.TestBincount) ... ok
test_simple_weight2 (test_function_base.TestBincount) ... ok
test_with_incorrect_minlength (test_function_base.TestBincount) ... ok
test_with_minlength (test_function_base.TestBincount) ... ok
test_with_minlength_and_weights (test_function_base.TestBincount) ... ok
test_with_minlength_smaller_than_maxvalue (test_function_base.TestBincount) ... ok
Regression test for missing dtype and order arguments ... ok
test_simple (test_function_base.TestCheckFinite) ... ok
test_basic (test_function_base.TestCopy) ... ok
test_order (test_function_base.TestCopy) ... ok
test_complex (test_function_base.TestCorrCoef) ... ok
test_ddof (test_function_base.TestCorrCoef) ... ok
test_empty (test_function_base.TestCorrCoef) ... ok
test_non_array (test_function_base.TestCorrCoef) ... ok
test_simple (test_function_base.TestCorrCoef) ... ok
test_wrong_ddof (test_function_base.TestCorrCoef) ... ok
test_xy (test_function_base.TestCorrCoef) ... ok
test_basic (test_function_base.TestCov) ... ok
test_complex (test_function_base.TestCov) ... ok
test_empty (test_function_base.TestCov) ... ok
test_wrong_ddof (test_function_base.TestCov) ... ok
test_xy (test_function_base.TestCov) ... ok
test_basic (test_function_base.TestCumprod) ... ok
test_basic (test_function_base.TestCumsum) ... ok
test_0d (test_function_base.TestDelete) ... ok
test_fancy (test_function_base.TestDelete) ... ok
test_single (test_function_base.TestDelete) ... ok
test_slices (test_function_base.TestDelete) ... ok
test_subclass (test_function_base.TestDelete) ... ok
test_basic (test_function_base.TestDiff) ... ok
test_nd (test_function_base.TestDiff) ... ok
test_forward (test_function_base.TestDigitize) ... ok
test_monotonic (test_function_base.TestDigitize) ... ok
test_random (test_function_base.TestDigitize) ... ok
test_reverse (test_function_base.TestDigitize) ... ok
test_right_basic (test_function_base.TestDigitize) ... ok
test_right_open (test_function_base.TestDigitize) ... ok
test_right_open_random (test_function_base.TestDigitize) ... ok
test_right_open_reverse (test_function_base.TestDigitize) ... ok
test_basic (test_function_base.TestExtins) ... ok
test_both (test_function_base.TestExtins) ... ok
test_place (test_function_base.TestExtins) ... ok
test_bartlett (test_function_base.TestFilterwindows) ... ok
test_blackman (test_function_base.TestFilterwindows) ... ok
test_hamming (test_function_base.TestFilterwindows) ... ok
test_hanning (test_function_base.TestFilterwindows) ... ok
test_badargs (test_function_base.TestGradient) ... ok
test_basic (test_function_base.TestGradient) ... ok
test_datetime64 (test_function_base.TestGradient) ... ok
test_masked (test_function_base.TestGradient) ... ok
test_second_order_accurate (test_function_base.TestGradient) ... ok
test_timedelta64 (test_function_base.TestGradient) ... ok
test_density (test_function_base.TestHistogram) ... ok
test_empty (test_function_base.TestHistogram) ... ok
test_normed (test_function_base.TestHistogram) ... ok
test_one_bin (test_function_base.TestHistogram) ... ok
test_outliers (test_function_base.TestHistogram) ... ok
test_simple (test_function_base.TestHistogram) ... ok
test_type (test_function_base.TestHistogram) ... ok
test_weights (test_function_base.TestHistogram) ... ok
There are two ways to specify bins. Check for the right errors when ... ok
test_empty (test_function_base.TestHistogramdd) ... ok
test_identical_samples (test_function_base.TestHistogramdd) ... ok
Test using +/-inf bin edges works. See #1788. ... ok
Test event very close to rightmost binedge. ... ok
test_shape_3d (test_function_base.TestHistogramdd) ... ok
test_shape_4d (test_function_base.TestHistogramdd) ... ok
test_simple (test_function_base.TestHistogramdd) ... ok
test_weights (test_function_base.TestHistogramdd) ... ok
test_0d (test_function_base.TestInsert) ... ok
test_basic (test_function_base.TestInsert) ... ok
test_index_array_copied (test_function_base.TestInsert) ... ok
test_multidim (test_function_base.TestInsert) ... ok
test_subclass (test_function_base.TestInsert) ... ok
test_basic (test_function_base.TestInterp) ... ok
test_exceptions (test_function_base.TestInterp) ... ok
test_if_len_x_is_small (test_function_base.TestInterp) ... ok
test_right_left_behavior (test_function_base.TestInterp) ... ok
test_scalar_interpolation_point (test_function_base.TestInterp) ... ok
test_zero_dimensional_interpolation_point (test_function_base.TestInterp) ... ok
test_int_beta (test_function_base.TestKaiser) ... ok
test_simple (test_function_base.TestKaiser) ... ok
test_array_like (test_function_base.TestMedian) ... ok
test_axis_keyword (test_function_base.TestMedian) ... ok
test_basic (test_function_base.TestMedian) ... ok
test_extended_axis (test_function_base.TestMedian) ... ok
test_extended_axis_invalid (test_function_base.TestMedian) ... ok
test_keepdims (test_function_base.TestMedian) ... ok
test_object (test_function_base.TestMedian) ... ok
test_overwrite_keyword (test_function_base.TestMedian) ... ok
test_subclass (test_function_base.TestMedian) ... ok
test_indexing (test_function_base.TestMeshgrid) ... ok
test_no_input (test_function_base.TestMeshgrid) ... ok
test_simple (test_function_base.TestMeshgrid) ... ok
test_single_input (test_function_base.TestMeshgrid) ... ok
test_sparse (test_function_base.TestMeshgrid) ... ok
test_simple (test_function_base.TestMsort) ... ok
test_0d (test_function_base.TestPiecewise) ... ok
test_default (test_function_base.TestPiecewise) ... ok
test_simple (test_function_base.TestPiecewise) ... ok
test_basic (test_function_base.TestProd) ... ok
test_basic (test_function_base.TestPtp) ... ok
test_2D (test_function_base.TestScoreatpercentile) ... ok
test_api (test_function_base.TestScoreatpercentile) ... ok
test_axis (test_function_base.TestScoreatpercentile) ... ok
test_basic (test_function_base.TestScoreatpercentile) ... ok
test_exception (test_function_base.TestScoreatpercentile) ... ok
test_extended_axis (test_function_base.TestScoreatpercentile) ... ok
test_extended_axis_invalid (test_function_base.TestScoreatpercentile) ... ok
test_keepdims (test_function_base.TestScoreatpercentile) ... ok
test_linear (test_function_base.TestScoreatpercentile) ... ok
test_lower_higher (test_function_base.TestScoreatpercentile) ... ok
test_midpoint (test_function_base.TestScoreatpercentile) ... ok
test_nearest (test_function_base.TestScoreatpercentile) ... ok
test_percentile_empty_dim (test_function_base.TestScoreatpercentile) ... ok
test_percentile_list (test_function_base.TestScoreatpercentile) ... ok
test_percentile_no_overwrite (test_function_base.TestScoreatpercentile) ... ok
test_percentile_out (test_function_base.TestScoreatpercentile) ... ok
test_percentile_overwrite (test_function_base.TestScoreatpercentile) ... ok
test_scalar_q (test_function_base.TestScoreatpercentile) ... ok
test_sequence (test_function_base.TestScoreatpercentile) ... ok
test_basic (test_function_base.TestSelect) ... ok
test_broadcasting (test_function_base.TestSelect) ... ok
test_deprecated_empty (test_function_base.TestSelect) ... ok
test_many_arguments (test_function_base.TestSelect) ... ok
test_non_bool_deprecation (test_function_base.TestSelect) ... ok
test_return_dtype (test_function_base.TestSelect) ... ok
test_array_like (test_function_base.TestSinc) ... ok
test_simple (test_function_base.TestSinc) ... ok
test_masked (test_function_base.TestTrapz) ... ok
test_matrix (test_function_base.TestTrapz) ... ok
test_ndim (test_function_base.TestTrapz) ... ok
test_simple (test_function_base.TestTrapz) ... ok
test_basic (test_function_base.TestTrimZeros) ... ok
test_leading_skip (test_function_base.TestTrimZeros) ... ok
test_trailing_skip (test_function_base.TestTrimZeros) ... ok
test_simple (test_function_base.TestUnique) ... ok
test_simple (test_function_base.TestUnwrap) ... ok
Regression test for issue 1156 ... ok
test_assigning_docstring (test_function_base.TestVectorize) ... ok
Ensure that vectorized func called exactly once per argument. ... ok
test_coverage1_ticket_2100 (test_function_base.TestVectorize) ... ok
Regression test for dependence on execution order: issue 1487 ... ok
test_keywords (test_function_base.TestVectorize) ... ok
Test kwarg support: enhancement ticket 2100 ... ok
Test excluded with mixed positional and kwargs: ticket 2100 ... ok
Test vectorizing function with no positional args. ... ok
Test vectorizing function with no kwargs args. ... ok
test_keywords_no_func_code (test_function_base.TestVectorize) ... ok
test_large (test_function_base.TestVectorize) ... ok
test_otypes (test_function_base.TestVectorize) ... ok
test_scalar (test_function_base.TestVectorize) ... ok
test_simple (test_function_base.TestVectorize) ... ok
Test vectorization over strings: issue 1892. ... ok
test_ufunc (test_function_base.TestVectorize) ... ok
test_simple (test_function_base.Test_I0) ... ok
test_1d (test_index_tricks.TestConcatenator) ... ok
test_2d (test_index_tricks.TestConcatenator) ... ok
test_mixed_type (test_index_tricks.TestConcatenator) ... ok
test_more_mixed_type (test_index_tricks.TestConcatenator) ... ok
test_basic (test_index_tricks.TestGrid) ... ok
test_linspace_equivalence (test_index_tricks.TestGrid) ... ok
test_nd (test_index_tricks.TestGrid) ... ok
test_regression_1 (test_index_tricks.TestIndexExpression) ... ok
test_simple_1 (test_index_tricks.TestIndexExpression) ... ok
test_basic (test_index_tricks.TestNdenumerate) ... ok
test_basic (test_index_tricks.TestRavelUnravelIndex) ... ok
test_clipmodes (test_index_tricks.TestRavelUnravelIndex) ... ok
test_dtypes (test_index_tricks.TestRavelUnravelIndex) ... ok
test_index_tricks.test_c_ ... ok
test_index_tricks.test_fill_diagonal(array([[5, 0, 0], ... ok
test_index_tricks.test_fill_diagonal(array([[5, 0, 0], ... ok
test_index_tricks.test_fill_diagonal(array([[5, 0, 0], ... ok
test_index_tricks.test_fill_diagonal(array([[5, 0, 0, 0, 0, 0, 0, 0, 0, 0], ... ok
test_index_tricks.test_fill_diagonal((array([0, 1, 2]), array([0, 1, 2]), array([0, 1, 2]), array([0, 1, 2])), (array([0, 1, 2]), array([0, 1, 2]), array([0, 1, 2]), array([0, 1, 2]))) ... ok
test_index_tricks.test_diag_indices(array([[100, 2, 3, 4], ... ok
test_index_tricks.test_diag_indices(array([[[1, 0], ... ok
test_index_tricks.test_diag_indices_from ... ok
test_index_tricks.test_ndindex ... ok
Test squeezing to 1D ... ok
Test outputing a standard ndarray ... ok
Test the automatic definition of the output dtype ... ok
Tests whether the output dtype can be uniformized ... ok
Tests names and usecols ... ok
Test autostrip ... ok
Check that names can be retrieved even if the line is commented out. ... ok
Test the stripping of comments ... ok
test_comments_is_none (test_io.TestFromTxt) ... ok
Test the conversion to datetime. ... ok
Test the conversion to datetime64. ... ok
Test the combination user-defined converters and usecol ... ok
Tests names and usecols ... ok
Test default format ... ok
test_dtype_with_converters (test_io.TestFromTxt) ... ok
Test using an explicit dtype with an object ... ok
Test easy structured dtype ... ok
Test that an empty file raises the proper warning. ... ok
Check that a nested dtype isn't MIA ... ok
Check that a nested dtype isn't MIA ... ok
Test missing values ... ok
Test fix-width w/ names ... ok
test_gft_using_filename (test_io.TestFromTxt) ... ok
test_gft_using_generator (test_io.TestFromTxt) ... ok
Test retrieving a header ... ok
Test w/ incomplete names ... ok
Test inconsistent dtype ... ok
Test using an integer for delimiter ... ok
test_invalid_converter (test_io.TestFromTxt) ... ok
Test invalid raise ... ok
Test invalid_raise with usecols ... ok
test_missing (test_io.TestFromTxt) ... ok
Test w/ a delimiter tab ... ok
Make sure that names are properly completed ... ok
Test overwriting the names of the dtype ... ok
Make sure we pick up the right names w/ usecols ... ok
test_recfromcsv (test_io.TestFromTxt) ... ok
test_recfromtxt (test_io.TestFromTxt) ... ok
Test w/ explicit dtype ... ok
Test the 'replace_space' option ... ok
test_shaped_dtype (test_io.TestFromTxt) ... ok
Test single dtype w explicit names ... ok
Test single dtype w implicit names ... ok
Test single dtype w/o names ... ok
test_skip_footer (test_io.TestFromTxt) ... ok
test_skip_footer_with_invalid (test_io.TestFromTxt) ... ok
Test row skipping ... ok
Test space delimiter ... ok
Test some corner case ... ok
Test whether unused converters are forgotten ... ok
Test the selection of columns ... ok
Test giving usecols with a comma-separated string ... ok
Test usecols with an integer ... ok
Test usecols with named columns ... ok
Test usecols with an explicit structured dtype ... ok
Test with missing and filling values ... ok
test_user_missing_values (test_io.TestFromTxt) ... ok
Test user_converters w/ explicit (standard) dtype ... ok
Test masked column ... ok
Test masked column ... ok
test_withmissing (test_io.TestFromTxt) ... ok
test_withmissing_float (test_io.TestFromTxt) ... ok
test_1D (test_io.TestLoadTxt) ... ok
test_3d_shaped_dtype (test_io.TestLoadTxt) ... ok
test_array (test_io.TestLoadTxt) ... ok
test_bad_line (test_io.TestLoadTxt) ... ok
test_comments (test_io.TestLoadTxt) ... ok
test_converters_with_usecols (test_io.TestLoadTxt) ... ok
Test using an explicit dtype with an object ... ok
test_empty_field_after_tab (test_io.TestLoadTxt) ... ok
test_empty_file (test_io.TestLoadTxt) ... ok
test_fancy_dtype (test_io.TestLoadTxt) ... ok
test_generator_source (test_io.TestLoadTxt) ... ok
test_int64_type (test_io.TestLoadTxt) ... ok
test_missing (test_io.TestLoadTxt) ... ok
test_ndmin_keyword (test_io.TestLoadTxt) ... ok
test_record (test_io.TestLoadTxt) ... ok
test_shaped_dtype (test_io.TestLoadTxt) ... ok
test_skiprows (test_io.TestLoadTxt) ... ok
test_structure_unpack (test_io.TestLoadTxt) ... ok
test_uint64_type (test_io.TestLoadTxt) ... ok
test_universal_newline (test_io.TestLoadTxt) ... ok
test_unused_converter (test_io.TestLoadTxt) ... ok
test_usecols (test_io.TestLoadTxt) ... ok
test_1D (test_io.TestSaveLoad) ... ok
test_array (test_io.TestSaveLoad) ... ok
test_array_object (test_io.TestSaveLoad) ... ok
test_mmap (test_io.TestSaveLoad) ... ok
test_record (test_io.TestSaveLoad) ... ok
test_1D (test_io.TestSaveTxt) ... ok
test_array (test_io.TestSaveTxt) ... ok
test_complex_arrays (test_io.TestSaveTxt) ... ok
test_custom_writer (test_io.TestSaveTxt) ... ok
test_delimiter (test_io.TestSaveTxt) ... ok
test_file_roundtrip (test_io.TestSaveTxt) ... ok
test_format (test_io.TestSaveTxt) ... ok
Test the functionality of the header and footer keyword argument. ... ok
test_record (test_io.TestSaveTxt) ... ok
test_1D (test_io.TestSavezLoad) ... ok
test_array (test_io.TestSavezLoad) ... ok
test_array_object (test_io.TestSavezLoad) ... ok
test_closing_fid (test_io.TestSavezLoad) ... ok
test_closing_zipfile_after_load (test_io.TestSavezLoad) ... ok
test_mmap (test_io.TestSavezLoad) ... ok
test_multiple_arrays (test_io.TestSavezLoad) ... ok
test_named_arrays (test_io.TestSavezLoad) ... ok
test_not_closing_opened_fid (test_io.TestSavezLoad) ... ok
test_record (test_io.TestSavezLoad) ... ok
test_savez_filename_clashes (test_io.TestSavezLoad) ... ok
test_record (test_io.Testfromregex) ... ok
test_record_2 (test_io.Testfromregex) ... ok
test_record_3 (test_io.Testfromregex) ... ok
test_io.test_gzip_load ... ok
test_io.test_gzip_loadtxt ... ok
test_io.test_gzip_loadtxt_from_string ... ok
test_io.test_npzfile_dict ... ok
test_io.test_load_refcount ... ok
test_allnans (test_nanfunctions.TestNanFunctions_ArgminArgmax) ... ok
test_empty (test_nanfunctions.TestNanFunctions_ArgminArgmax) ... ok
test_matrices (test_nanfunctions.TestNanFunctions_ArgminArgmax) ... ok
test_mutation (test_nanfunctions.TestNanFunctions_ArgminArgmax) ... ok
test_result_values (test_nanfunctions.TestNanFunctions_ArgminArgmax) ... ok
test_scalar (test_nanfunctions.TestNanFunctions_ArgminArgmax) ... ok
test_nanargmax (test_nanfunctions.TestNanFunctions_IntTypes) ... ok
test_nanargmin (test_nanfunctions.TestNanFunctions_IntTypes) ... ok
test_nanmax (test_nanfunctions.TestNanFunctions_IntTypes) ... ok
test_nanmean (test_nanfunctions.TestNanFunctions_IntTypes) ... ok
test_nanmin (test_nanfunctions.TestNanFunctions_IntTypes) ... ok
test_nanstd (test_nanfunctions.TestNanFunctions_IntTypes) ... ok
test_nansum (test_nanfunctions.TestNanFunctions_IntTypes) ... ok
test_nanvar (test_nanfunctions.TestNanFunctions_IntTypes) ... ok
test_allnans (test_nanfunctions.TestNanFunctions_MeanVarStd) ... ok
test_ddof (test_nanfunctions.TestNanFunctions_MeanVarStd) ... ok
test_ddof_too_big (test_nanfunctions.TestNanFunctions_MeanVarStd) ... ok
test_dtype_error (test_nanfunctions.TestNanFunctions_MeanVarStd) ... ok
test_dtype_from_char (test_nanfunctions.TestNanFunctions_MeanVarStd) ... ok
test_dtype_from_dtype (test_nanfunctions.TestNanFunctions_MeanVarStd) ... ok
test_dtype_from_input (test_nanfunctions.TestNanFunctions_MeanVarStd) ... ok
test_empty (test_nanfunctions.TestNanFunctions_MeanVarStd) ... ok
test_keepdims (test_nanfunctions.TestNanFunctions_MeanVarStd) ... ok
test_matrices (test_nanfunctions.TestNanFunctions_MeanVarStd) ... ok
test_mutation (test_nanfunctions.TestNanFunctions_MeanVarStd) ... ok
test_out (test_nanfunctions.TestNanFunctions_MeanVarStd) ... ok
test_out_dtype_error (test_nanfunctions.TestNanFunctions_MeanVarStd) ... ok
test_result_values (test_nanfunctions.TestNanFunctions_MeanVarStd) ... ok
test_scalar (test_nanfunctions.TestNanFunctions_MeanVarStd) ... ok
test_allnans (test_nanfunctions.TestNanFunctions_MinMax) ... ok
test_dtype_from_input (test_nanfunctions.TestNanFunctions_MinMax) ... ok
test_keepdims (test_nanfunctions.TestNanFunctions_MinMax) ... ok
test_masked (test_nanfunctions.TestNanFunctions_MinMax) ... ok
test_matrices (test_nanfunctions.TestNanFunctions_MinMax) ... ok
test_mutation (test_nanfunctions.TestNanFunctions_MinMax) ... ok
test_out (test_nanfunctions.TestNanFunctions_MinMax) ... ok
test_result_values (test_nanfunctions.TestNanFunctions_MinMax) ... ok
test_scalar (test_nanfunctions.TestNanFunctions_MinMax) ... ok
test_allnans (test_nanfunctions.TestNanFunctions_Sum) ... ok
test_dtype_from_char (test_nanfunctions.TestNanFunctions_Sum) ... ok
test_dtype_from_dtype (test_nanfunctions.TestNanFunctions_Sum) ... ok
test_dtype_from_input (test_nanfunctions.TestNanFunctions_Sum) ... ok
test_empty (test_nanfunctions.TestNanFunctions_Sum) ... ok
test_keepdims (test_nanfunctions.TestNanFunctions_Sum) ... ok
test_matrices (test_nanfunctions.TestNanFunctions_Sum) ... ok
test_mutation (test_nanfunctions.TestNanFunctions_Sum) ... ok
test_out (test_nanfunctions.TestNanFunctions_Sum) ... ok
test_result_values (test_nanfunctions.TestNanFunctions_Sum) ... ok
test_scalar (test_nanfunctions.TestNanFunctions_Sum) ... ok
test_complex (test_polynomial.TestDocs) ... ok
test_doctests (test_polynomial.TestDocs) ... ok
test_integ_coeffs (test_polynomial.TestDocs) ... ok
test_objects (test_polynomial.TestDocs) ... ok
test_polyfit (test_polynomial.TestDocs) ... ok
test_roots (test_polynomial.TestDocs) ... ok
test_str_leading_zeros (test_polynomial.TestDocs) ... ok
test_zero_dims (test_polynomial.TestDocs) ... ok
test_append_double (test_recfunctions.TestAppendFields) ... ok
test_append_on_flex (test_recfunctions.TestAppendFields) ... ok
test_append_on_nested (test_recfunctions.TestAppendFields) ... ok
test_append_single (test_recfunctions.TestAppendFields) ... ok
test_inner_join (test_recfunctions.TestJoinBy) ... ok
test_join (test_recfunctions.TestJoinBy) ... ok
test_leftouter_join (test_recfunctions.TestJoinBy) ... ok
test_outer_join (test_recfunctions.TestJoinBy) ... ok
test_no_postfix (test_recfunctions.TestJoinBy2) ... ok
test_no_r1postfix (test_recfunctions.TestJoinBy2) ... ok
test_no_r2postfix (test_recfunctions.TestJoinBy2) ... ok
test_two_keys_two_vars (test_recfunctions.TestJoinBy2) ... ok
test_flatten (test_recfunctions.TestMergeArrays) ... ok
test_flatten_wflexible (test_recfunctions.TestMergeArrays) ... ok
test_singlerecord (test_recfunctions.TestMergeArrays) ... ok
test_solo (test_recfunctions.TestMergeArrays) ... ok
test_solo_w_flatten (test_recfunctions.TestMergeArrays) ... ok
test_standard (test_recfunctions.TestMergeArrays) ... ok
test_w_shorter_flex (test_recfunctions.TestMergeArrays) ... ok
test_w_singlefield (test_recfunctions.TestMergeArrays) ... ok
test_wmasked_arrays (test_recfunctions.TestMergeArrays) ... ok
test_drop_fields (test_recfunctions.TestRecFunctions) ... ok
test_find_duplicates (test_recfunctions.TestRecFunctions) ... ok
test_find_duplicates_ignoremask (test_recfunctions.TestRecFunctions) ... ok
test_get_fieldstructure (test_recfunctions.TestRecFunctions) ... ok
test_get_names (test_recfunctions.TestRecFunctions) ... ok
test_get_names_flat (test_recfunctions.TestRecFunctions) ... ok
test_rename_fields (test_recfunctions.TestRecFunctions) ... ok
test_zip_descr (test_recfunctions.TestRecFunctions) ... ok
test_masked_flexible (test_recfunctions.TestRecursiveFillFields) ... ok
test_simple_flexible (test_recfunctions.TestRecursiveFillFields) ... ok
test_autoconversion (test_recfunctions.TestStackArrays) ... ok
test_checktitles (test_recfunctions.TestStackArrays) ... ok
test_defaults (test_recfunctions.TestStackArrays) ... ok
test_matching_named_fields (test_recfunctions.TestStackArrays) ... ok
test_solo (test_recfunctions.TestStackArrays) ... ok
test_unnamed_and_named_fields (test_recfunctions.TestStackArrays) ... ok
test_unnamed_fields (test_recfunctions.TestStackArrays) ... ok
Ticket #1676 ... ok
Test for changeset r5065 ... ok
Ticket #91 ... ok
Ticket 928. ... ok
test_include_dirs (test_regression.TestRegression) ... ok
test_large_fancy_indexing (test_regression.TestRegression) ... ok
test_loadtxt_fields_subarrays (test_regression.TestRegression) ... ok
Ticket #95 ... ok
Ticket #572 ... ok
Ticket #448 ... ok
Ticket #469 ... ok
Ticket #325 ... ok
Ticket #339 ... ok
test_nansum_with_boolean (test_regression.TestRegression) ... ok
Ticket 1140 ... ok
Ticket #28 ... ok
Ticket #396 ... ok
Ticket #553 ... ok
Ticket #554 ... ok
Ticket #1249 ... ok
Make polydiv work for complex types ... ok
Ticket #628 ... ok
Ticket #944 ... ok
test_py3_compat (test_regression.TestRegression) ... ok
Ticket #378 ... ok
Ticket #205 ... ok
test_void_coercion (test_regression.TestRegression) ... ok
ticket #1243 ... ok
test_3d (test_shape_base.TestApplyAlongAxis) ... ok
test_simple (test_shape_base.TestApplyAlongAxis) ... ok
test_simple101 (test_shape_base.TestApplyAlongAxis) ... ok
test_simple (test_shape_base.TestApplyOverAxes) ... ok
test_index_split_high_bound (test_shape_base.TestArraySplit) ... ok
test_index_split_low_bound (test_shape_base.TestArraySplit) ... ok
test_index_split_simple (test_shape_base.TestArraySplit) ... ok
test_integer_0_split (test_shape_base.TestArraySplit) ... ok
test_integer_split (test_shape_base.TestArraySplit) ... ok
test_integer_split_2D_cols (test_shape_base.TestArraySplit) ... ok
This will fail if we change default axis ... ok
test_integer_split_2D_rows (test_shape_base.TestArraySplit) ... ok
test_2D_array (test_shape_base.TestDsplit) ... ok
test_3D_array (test_shape_base.TestDsplit) ... ok
test_0D_array (test_shape_base.TestDstack) ... ok
test_1D_array (test_shape_base.TestDstack) ... ok
test_2D_array (test_shape_base.TestDstack) ... ok
test_2D_array2 (test_shape_base.TestDstack) ... ok
test_0D_array (test_shape_base.TestHsplit) ... ok
test_1D_array (test_shape_base.TestHsplit) ... ok
test_2D_array (test_shape_base.TestHsplit) ... ok
test_return_type (test_shape_base.TestKron) ... ok
test_basic (test_shape_base.TestMayShareMemory) ... ok
test_equal_split (test_shape_base.TestSplit) ... ok
test_unequal_split (test_shape_base.TestSplit) ... ok
test_basic (test_shape_base.TestSqueeze) ... ok
test_basic (test_shape_base.TestTile) ... ok
test_empty (test_shape_base.TestTile) ... ok
test_kroncompare (test_shape_base.TestTile) ... ok
test_1D_array (test_shape_base.TestVsplit) ... ok
test_2D_array (test_shape_base.TestVsplit) ... ok
test_stride_tricks.test_same ... ok
test_stride_tricks.test_one_off ... ok
Check that the final shape is just the input shape. ... ok
Check that two different input shapes (of the same length but some have ... ok
Check that two different input shapes (of different lengths) broadcast ... ok
Check that a ValueError is raised for incompatible shapes. ... ok
Check that the data layout is the same as if a ufunc did the operation. ... ok
test_stride_tricks.test_as_strided ... ok
test_diag_bounds (test_twodim_base.TestDiag) ... ok
test_failure (test_twodim_base.TestDiag) ... ok
test_fortran_order (test_twodim_base.TestDiag) ... ok
test_matrix (test_twodim_base.TestDiag) ... ok
test_vector (test_twodim_base.TestDiag) ... ok
test_2d (test_twodim_base.TestEye) ... ok
test_basic (test_twodim_base.TestEye) ... ok
test_bool (test_twodim_base.TestEye) ... ok
test_diag (test_twodim_base.TestEye) ... ok
test_diag2d (test_twodim_base.TestEye) ... ok
test_eye_bounds (test_twodim_base.TestEye) ... ok
test_strings (test_twodim_base.TestEye) ... ok
test_basic (test_twodim_base.TestFliplr) ... ok
test_basic (test_twodim_base.TestFlipud) ... ok
test_all_outliers (test_twodim_base.TestHistogram2d) ... ok
test_asym (test_twodim_base.TestHistogram2d) ... ok
test_empty (test_twodim_base.TestHistogram2d) ... ok
test_norm (test_twodim_base.TestHistogram2d) ... ok
test_simple (test_twodim_base.TestHistogram2d) ... ok
test_axes (test_twodim_base.TestRot90) ... ok
test_basic (test_twodim_base.TestRot90) ... ok
test_dtype (test_twodim_base.TestTri) ... ok
test_twodim_base.TestTrilIndicesFrom.test_exceptions ... ok
test_twodim_base.TestTriuIndices.test_triu_indices(array([ 1, 2, 3, 4, 6, 7, 8, 11, 12, 16]), array([ 1, 2, 3, 4, 6, 7, 8, 11, 12, 16])) ... ok
test_twodim_base.TestTriuIndices.test_triu_indices(array([ 1, 2, 3, 4, 5, 7, 8, 9, 10, 13, 14, 15, 19, 20]), array([ 1, 2, 3, 4, 5, 7, 8, 9, 10, 13, 14, 15, 19, 20])) ... ok
test_twodim_base.TestTriuIndices.test_triu_indices(array([[-1, -1, -1, -1], ... ok
test_twodim_base.TestTriuIndices.test_triu_indices(array([[-1, -1, -1, -1, -1], ... ok
test_twodim_base.TestTriuIndices.test_triu_indices(array([[ -1, -1, -10, -10], ... ok
test_twodim_base.TestTriuIndices.test_triu_indices(array([[ -1, -1, -10, -10, -10], ... ok
test_twodim_base.TestTriuIndicesFrom.test_exceptions ... ok
test_twodim_base.TestVander.test_basic(array([[ 0, 0, 0, 1], ... ok
test_twodim_base.TestVander.test_basic(array([], shape=(4, 0), dtype=int64), array([], shape=(4, 0), dtype=int64)) ... ok
test_twodim_base.TestVander.test_basic(array([[1], ... ok
test_twodim_base.TestVander.test_basic(array([[ 0, 1], ... ok
test_twodim_base.TestVander.test_basic(array([[ 0, 0, 1], ... ok
test_twodim_base.TestVander.test_basic(array([[ 0, 0, 0, 1], ... ok
test_twodim_base.TestVander.test_basic(array([[ 0, 0, 0, 0, 1], ... ok
test_twodim_base.TestVander.test_dtypes(array([[121, 11, 1], ... ok
test_twodim_base.TestVander.test_dtypes(array([[ 0.+2.j, 1.+1.j, 1.+0.j], ... ok
test_twodim_base.test_tril_triu_ndim2(array([[ 1., 0.], ... ok
test_twodim_base.test_tril_triu_ndim2(array([[ 1., 1.], ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('float16'), dtype('float16')) ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('float16'), dtype('float16')) ... ok
test_twodim_base.test_tril_triu_ndim2(array([[ 1., 0.], ... ok
test_twodim_base.test_tril_triu_ndim2(array([[ 1., 1.], ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('float32'), dtype('float32')) ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('float32'), dtype('float32')) ... ok
test_twodim_base.test_tril_triu_ndim2(array([[ 1., 0.], ... ok
test_twodim_base.test_tril_triu_ndim2(array([[ 1., 1.], ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('float64'), dtype('float64')) ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('float64'), dtype('float64')) ... ok
test_twodim_base.test_tril_triu_ndim2(array([[ 1.0, 0.0], ... ok
test_twodim_base.test_tril_triu_ndim2(array([[ 1.0, 1.0], ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('float128'), dtype('float128')) ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('float128'), dtype('float128')) ... ok
test_twodim_base.test_tril_triu_ndim2(array([[ 1.+0.j, 0.+0.j], ... ok
test_twodim_base.test_tril_triu_ndim2(array([[ 1.+0.j, 1.+0.j], ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('complex64'), dtype('complex64')) ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('complex64'), dtype('complex64')) ... ok
test_twodim_base.test_tril_triu_ndim2(array([[ 1.+0.j, 0.+0.j], ... ok
test_twodim_base.test_tril_triu_ndim2(array([[ 1.+0.j, 1.+0.j], ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('complex128'), dtype('complex128')) ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('complex128'), dtype('complex128')) ... ok
test_twodim_base.test_tril_triu_ndim2(array([[ 1.0+0.0j, 0.0+0.0j], ... ok
test_twodim_base.test_tril_triu_ndim2(array([[ 1.0+0.0j, 1.0+0.0j], ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('complex256'), dtype('complex256')) ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('complex256'), dtype('complex256')) ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('int8'), dtype('int8')) ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('int8'), dtype('int8')) ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('uint8'), dtype('uint8')) ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('uint8'), dtype('uint8')) ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('int16'), dtype('int16')) ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('int16'), dtype('int16')) ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('uint16'), dtype('uint16')) ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('uint16'), dtype('uint16')) ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('int32'), dtype('int32')) ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('int32'), dtype('int32')) ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('uint32'), dtype('uint32')) ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('uint32'), dtype('uint32')) ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('int64'), dtype('int64')) ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('int64'), dtype('int64')) ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('uint64'), dtype('uint64')) ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('uint64'), dtype('uint64')) ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('int64'), dtype('int64')) ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('int64'), dtype('int64')) ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('uint64'), dtype('uint64')) ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('uint64'), dtype('uint64')) ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('int64'), dtype('int64')) ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('int64'), dtype('int64')) ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim2(array([[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('uint64'), dtype('uint64')) ... ok
test_twodim_base.test_tril_triu_ndim2(dtype('uint64'), dtype('uint64')) ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[ 1., 1.], ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[ 1., 0.], ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('float16'), dtype('float16')) ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('float16'), dtype('float16')) ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[ 1., 1.], ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[ 1., 0.], ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('float32'), dtype('float32')) ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('float32'), dtype('float32')) ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[ 1., 1.], ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[ 1., 0.], ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('float64'), dtype('float64')) ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('float64'), dtype('float64')) ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[ 1.0, 1.0], ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[ 1.0, 0.0], ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('float128'), dtype('float128')) ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('float128'), dtype('float128')) ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[ 1.+0.j, 1.+0.j], ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[ 1.+0.j, 0.+0.j], ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('complex64'), dtype('complex64')) ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('complex64'), dtype('complex64')) ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[ 1.+0.j, 1.+0.j], ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[ 1.+0.j, 0.+0.j], ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('complex128'), dtype('complex128')) ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('complex128'), dtype('complex128')) ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[ 1.0+0.0j, 1.0+0.0j], ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[ 1.0+0.0j, 0.0+0.0j], ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('complex256'), dtype('complex256')) ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('complex256'), dtype('complex256')) ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('int8'), dtype('int8')) ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('int8'), dtype('int8')) ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('uint8'), dtype('uint8')) ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('uint8'), dtype('uint8')) ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('int16'), dtype('int16')) ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('int16'), dtype('int16')) ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('uint16'), dtype('uint16')) ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('uint16'), dtype('uint16')) ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('int32'), dtype('int32')) ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('int32'), dtype('int32')) ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('uint32'), dtype('uint32')) ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('uint32'), dtype('uint32')) ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('int64'), dtype('int64')) ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('int64'), dtype('int64')) ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('uint64'), dtype('uint64')) ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('uint64'), dtype('uint64')) ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('int64'), dtype('int64')) ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('int64'), dtype('int64')) ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('uint64'), dtype('uint64')) ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('uint64'), dtype('uint64')) ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('int64'), dtype('int64')) ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('int64'), dtype('int64')) ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 1], ... ok
test_twodim_base.test_tril_triu_ndim3(array([[[1, 0], ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('uint64'), dtype('uint64')) ... ok
test_twodim_base.test_tril_triu_ndim3(dtype('uint64'), dtype('uint64')) ... ok
test_twodim_base.test_mask_indices(array([0, 1, 2, 4, 5, 8]), array([0, 1, 2, 4, 5, 8])) ... ok
test_twodim_base.test_mask_indices(array([1, 2, 5]), array([1, 2, 5])) ... ok
test_twodim_base.test_tril_indices(array([ 1, 5, 6, 9, 10, 11, 13, 14, 15, 16]), array([ 1, 5, 6, 9, 10, 11, 13, 14, 15, 16])) ... ok
test_twodim_base.test_tril_indices(array([ 1, 6, 7, 11, 12, 13, 16, 17, 18, 19]), array([ 1, 6, 7, 11, 12, 13, 16, 17, 18, 19])) ... ok
test_twodim_base.test_tril_indices(array([[-1, 2, 3, 4], ... ok
test_twodim_base.test_tril_indices(array([[-1, 2, 3, 4, 5], ... ok
test_twodim_base.test_tril_indices(array([[-10, -10, -10, 4], ... ok
test_twodim_base.test_tril_indices(array([[-10, -10, -10, 4, 5], ... ok
test_asfarray (test_type_check.TestArrayConversion) ... ok
test_basic (test_type_check.TestCommonType) ... ok
test_cmplx (test_type_check.TestImag) ... ok
test_real (test_type_check.TestImag) ... ok
test_fail (test_type_check.TestIscomplex) ... ok
test_pass (test_type_check.TestIscomplex) ... ok
test_basic (test_type_check.TestIscomplexobj) ... ok
test_complex (test_type_check.TestIsfinite) ... ok
test_complex1 (test_type_check.TestIsfinite) ... ok
test_goodvalues (test_type_check.TestIsfinite) ... ok
test_ind (test_type_check.TestIsfinite) ... ok
test_integer (test_type_check.TestIsfinite) ... ok
test_neginf (test_type_check.TestIsfinite) ... ok
test_posinf (test_type_check.TestIsfinite) ... ok
test_goodvalues (test_type_check.TestIsinf) ... ok
test_ind (test_type_check.TestIsinf) ... ok
test_neginf (test_type_check.TestIsinf) ... ok
test_neginf_scalar (test_type_check.TestIsinf) ... ok
test_posinf (test_type_check.TestIsinf) ... ok
test_posinf_scalar (test_type_check.TestIsinf) ... ok
test_complex (test_type_check.TestIsnan) ... ok
test_complex1 (test_type_check.TestIsnan) ... ok
test_goodvalues (test_type_check.TestIsnan) ... ok
test_ind (test_type_check.TestIsnan) ... ok
test_integer (test_type_check.TestIsnan) ... ok
test_neginf (test_type_check.TestIsnan) ... ok
test_posinf (test_type_check.TestIsnan) ... ok
test_generic (test_type_check.TestIsneginf) ... ok
test_generic (test_type_check.TestIsposinf) ... ok
test_fail (test_type_check.TestIsreal) ... ok
test_pass (test_type_check.TestIsreal) ... ok
test_basic (test_type_check.TestIsrealobj) ... ok
test_basic (test_type_check.TestIsscalar) ... ok
test_default_1 (test_type_check.TestMintypecode) ... ok
test_default_2 (test_type_check.TestMintypecode) ... ok
test_default_3 (test_type_check.TestMintypecode) ... ok
test_complex_bad (test_type_check.TestNanToNum) ... ok
test_complex_bad2 (test_type_check.TestNanToNum) ... ok
test_complex_good (test_type_check.TestNanToNum) ... ok
test_generic (test_type_check.TestNanToNum) ... ok
test_integer (test_type_check.TestNanToNum) ... ok
test_cmplx (test_type_check.TestReal) ... ok
test_real (test_type_check.TestReal) ... ok
test_basic (test_type_check.TestRealIfClose) ... ok
test_fix (test_ufunclike.TestUfunclike) ... ok
test_fix_with_subclass (test_ufunclike.TestUfunclike) ... ok
test_isneginf (test_ufunclike.TestUfunclike) ... ok
test_isposinf (test_ufunclike.TestUfunclike) ... ok
test_utils.test_lookfor ... ok
test_utils.test_deprecate_decorator ... ok
test_utils.test_deprecate_decorator_message ... ok
test_utils.test_deprecate_fn ... ok
test_utils.test_safe_eval_nameconstant ... ok
test_utils.test_byte_bounds ... ok
test_lapack (test_build.TestF77Mismatch) ... ok
Check mode='full' FutureWarning. ... ok
test_linalg.TestBoolPower.test_square ... ok
test_linalg.TestCond2.test_sq_cases ... ok
test_linalg.TestCondInf.test ... ok
test_linalg.TestCondSVD.test_sq_cases ... ok
test_linalg.TestDet.test_sq_cases ... ok
test_linalg.TestDet.test_types(<type 'numpy.float32'>,) ... ok
test_linalg.TestDet.test_types(<type 'numpy.float64'>,) ... ok
test_linalg.TestDet.test_types(<type 'numpy.complex64'>,) ... ok
test_linalg.TestDet.test_types(<type 'numpy.complex128'>,) ... ok
test_linalg.TestDet.test_zero ... ok
test_linalg.TestEig.test_sq_cases ... ok
test_linalg.TestEig.test_types(<type 'numpy.float32'>,) ... ok
test_linalg.TestEig.test_types(<type 'numpy.float64'>,) ... ok
test_linalg.TestEig.test_types(<type 'numpy.complex64'>,) ... ok
test_linalg.TestEig.test_types(<type 'numpy.complex128'>,) ... ok
test_linalg.TestEigh.test_UPLO ... ok
test_linalg.TestEigh.test_herm_cases ... ok
test_linalg.TestEigh.test_invalid ... ok
test_linalg.TestEigh.test_types(<type 'numpy.float32'>,) ... ok
test_linalg.TestEigh.test_types(<type 'numpy.float64'>,) ... ok
test_linalg.TestEigh.test_types(<type 'numpy.complex64'>,) ... ok
test_linalg.TestEigh.test_types(<type 'numpy.complex128'>,) ... ok
test_linalg.TestEigvals.test_sq_cases ... ok
test_linalg.TestEigvals.test_types(<type 'numpy.float32'>,) ... ok
test_linalg.TestEigvals.test_types(<type 'numpy.float64'>,) ... ok
test_linalg.TestEigvals.test_types(<type 'numpy.complex64'>,) ... ok
test_linalg.TestEigvals.test_types(<type 'numpy.complex128'>,) ... ok
test_linalg.TestEigvalsh.test_UPLO ... ok
test_linalg.TestEigvalsh.test_herm_cases ... ok
test_linalg.TestEigvalsh.test_invalid ... ok
test_linalg.TestEigvalsh.test_types(<type 'numpy.float32'>,) ... ok
test_linalg.TestEigvalsh.test_types(<type 'numpy.float64'>,) ... ok
test_linalg.TestEigvalsh.test_types(<type 'numpy.complex64'>,) ... ok
test_linalg.TestEigvalsh.test_types(<type 'numpy.complex128'>,) ... ok
test_linalg.TestInv.test_0_size ... ok
test_linalg.TestInv.test_sq_cases ... ok
test_linalg.TestInv.test_types(<type 'numpy.float32'>,) ... ok
test_linalg.TestInv.test_types(<type 'numpy.float64'>,) ... ok
test_linalg.TestInv.test_types(<type 'numpy.complex64'>,) ... ok
test_linalg.TestInv.test_types(<type 'numpy.complex128'>,) ... ok
test_linalg.TestLstsq.test_sq_cases ... ok
test_linalg.TestMatrixPower.test_invert_noninvertible ... ok
test_linalg.TestMatrixPower.test_large_power ... ok
test_linalg.TestMatrixPower.test_large_power_trailing_zero ... ok
test_linalg.TestMatrixPower.testip_invert(array([[ 0, 1], ... ok
test_linalg.TestMatrixPower.testip_invert(array([[ 4, -7], ... ok
test_linalg.TestMatrixPower.testip_invert(array([[ 0.1, 3.2], ... ok
test_linalg.TestMatrixPower.testip_invert(array([[ 0., 1., 0., 0., 0., 0., 0., 0., 0., 0.], ... ok
test_linalg.TestMatrixPower.testip_one(array([[ 4, -7], ... ok
test_linalg.TestMatrixPower.testip_one(array([[ 0.1, 3.2], ... ok
test_linalg.TestMatrixPower.testip_one(array([[ 0., 1., 0., 0., 0., 0., 0., 0., 0., 0.], ... ok
test_linalg.TestMatrixPower.testip_two(array([[ 4, -7], ... ok
test_linalg.TestMatrixPower.testip_two(array([[ 0.1, 3.2], ... ok
test_linalg.TestMatrixPower.testip_two(array([[ 0., 1., 0., 0., 0., 0., 0., 0., 0., 0.], ... ok
test_linalg.TestMatrixPower.testip_zero(array([[ 4, -7], ... ok
test_linalg.TestMatrixPower.testip_zero(array([[ 0.1, 3.2], ... ok
test_linalg.TestMatrixPower.testip_zero(array([[ 0., 1., 0., 0., 0., 0., 0., 0., 0., 0.], ... ok
test_linalg.TestMatrixRank.test_matrix_rank(4, 4) ... ok
test_linalg.TestMatrixRank.test_matrix_rank(3, 3) ... ok
test_linalg.TestMatrixRank.test_matrix_rank(0, 0) ... ok
test_linalg.TestMatrixRank.test_matrix_rank(1, 1) ... ok
test_linalg.TestMatrixRank.test_matrix_rank(0, 0) ... ok
test_linalg.TestMatrixRank.test_matrix_rank(1, 1) ... ok
test_linalg.TestMatrixRank.test_matrix_rank(<type 'exceptions.TypeError'>, <function matrix_rank at 0x17b7410>, array([[[ 0., 0.], ... ok
test_linalg.TestMatrixRank.test_matrix_rank(1, 1) ... ok
test_linalg.TestNormDouble.test_axis ... ok
test_linalg.TestNormDouble.test_bad_args ... ok
test_linalg.TestNormDouble.test_complex_high_ord ... ok
test_linalg.TestNormDouble.test_empty ... ok
test_linalg.TestNormDouble.test_intmin ... ok
test_linalg.TestNormDouble.test_longdouble_norm ... ok
test_linalg.TestNormDouble.test_matrix ... ok
test_linalg.TestNormDouble.test_vector ... ok
test_linalg.TestNormInt64.test_axis ... ok
test_linalg.TestNormInt64.test_bad_args ... ok
test_linalg.TestNormInt64.test_complex_high_ord ... ok
test_linalg.TestNormInt64.test_empty ... ok
test_linalg.TestNormInt64.test_intmin ... ok
test_linalg.TestNormInt64.test_longdouble_norm ... ok
test_linalg.TestNormInt64.test_matrix ... ok
test_linalg.TestNormInt64.test_vector ... ok
test_linalg.TestNormSingle.test_axis ... ok
test_linalg.TestNormSingle.test_bad_args ... ok
test_linalg.TestNormSingle.test_complex_high_ord ... ok
test_linalg.TestNormSingle.test_empty ... ok
test_linalg.TestNormSingle.test_intmin ... ok
test_linalg.TestNormSingle.test_longdouble_norm ... ok
test_linalg.TestNormSingle.test_matrix ... ok
test_linalg.TestNormSingle.test_vector ... ok
test_linalg.TestPinv.test_sq_cases ... ok
test_linalg.TestQR.test_mode_all_but_economic ... ok
test_linalg.TestQR.test_mode_raw ... ok
test_linalg.TestQR.test_qr_empty ... ok
test_linalg.TestSVD.test_sq_cases ... ok
test_linalg.TestSVD.test_types(<type 'numpy.float32'>,) ... ok
test_linalg.TestSVD.test_types(<type 'numpy.float64'>,) ... ok
test_linalg.TestSVD.test_types(<type 'numpy.complex64'>,) ... ok
test_linalg.TestSVD.test_types(<type 'numpy.complex128'>,) ... ok
test_linalg.TestSolve.test_0_size ... ok
test_linalg.TestSolve.test_0_size_k ... ok
test_linalg.TestSolve.test_sq_cases ... ok
test_linalg.TestSolve.test_types(<type 'numpy.float32'>,) ... ok
test_linalg.TestSolve.test_types(<type 'numpy.float64'>,) ... ok
test_linalg.TestSolve.test_types(<type 'numpy.complex64'>,) ... ok
test_linalg.TestSolve.test_types(<type 'numpy.complex128'>,) ... ok
test_linalg.test_reduced_rank ... ok
test_linalg.test_byteorder_check ... ok
test_linalg.test_generalized_raise_multiloop ... ok
test_linalg.test_xerbla_override ... SKIP: Numpy xerbla not linked in.
Ticket #652 ... ok
Ticket 662. ... ok
test_lapack_endian (test_regression.TestRegression) ... ok
test_large_svd_32bit (test_regression.TestRegression) ... ok
Regression for #786: Froebenius norm for vectors raises ... ok
Ticket 627. ... ok
test_check_on_fields (test_core.TestFillingValues) ... ok
test_check_on_scalar (test_core.TestFillingValues) ... ok
test_extremum_fill_value (test_core.TestFillingValues) ... ok
test_fillvalue (test_core.TestFillingValues) ... ok
test_fillvalue_as_arguments (test_core.TestFillingValues) ... ok
test_fillvalue_conversion (test_core.TestFillingValues) ... ok
test_fillvalue_exotic_dtype (test_core.TestFillingValues) ... ok
test_fillvalue_implicit_structured_array (test_core.TestFillingValues) ... ok
test_fillvalue_in_view (test_core.TestFillingValues) ... ok
test_fillvalue_individual_fields (test_core.TestFillingValues) ... ok
test_asanyarray (test_core.TestMaskedArray) ... ok
test_asarray (test_core.TestMaskedArray) ... ok
test_basic0d (test_core.TestMaskedArray) ... ok
test_basic1d (test_core.TestMaskedArray) ... ok
test_basic2d (test_core.TestMaskedArray) ... ok
test_basicattributes (test_core.TestMaskedArray) ... ok
test_concatenate_alongaxis (test_core.TestMaskedArray) ... ok
test_concatenate_basic (test_core.TestMaskedArray) ... ok
test_concatenate_flexible (test_core.TestMaskedArray) ... ok
test_copy (test_core.TestMaskedArray) ... ok
test_creation_maskcreation (test_core.TestMaskedArray) ... ok
test_creation_ndmin (test_core.TestMaskedArray) ... ok
test_creation_ndmin_from_maskedarray (test_core.TestMaskedArray) ... ok
test_creation_with_list_of_maskedarrays (test_core.TestMaskedArray) ... ok
test_deepcopy (test_core.TestMaskedArray) ... ok
test_fancy_printoptions (test_core.TestMaskedArray) ... ok
test_filled_w_f_order (test_core.TestMaskedArray) ... ok
test_filled_w_flexible_dtype (test_core.TestMaskedArray) ... ok
test_filled_w_mvoid (test_core.TestMaskedArray) ... ok
test_filled_w_nested_dtype (test_core.TestMaskedArray) ... ok
test_filled_w_object_dtype (test_core.TestMaskedArray) ... ok
test_fix_invalid (test_core.TestMaskedArray) ... ok
test_flatten_structured_array (test_core.TestMaskedArray) ... ok
test_indexing (test_core.TestMaskedArray) ... ok
test_maskedelement (test_core.TestMaskedArray) ... ok
test_mvoid_getitem (test_core.TestMaskedArray) ... ok
test_mvoid_iter (test_core.TestMaskedArray) ... ok
test_mvoid_print (test_core.TestMaskedArray) ... ok
test_oddfeatures_1 (test_core.TestMaskedArray) ... ok
test_oddfeatures_2 (test_core.TestMaskedArray) ... ok
test_oddfeatures_3 (test_core.TestMaskedArray) ... ok
test_optinfo_propagation (test_core.TestMaskedArray) ... ok
test_pickling (test_core.TestMaskedArray) ... ok
test_pickling_keepalignment (test_core.TestMaskedArray) ... ok
test_pickling_maskedconstant (test_core.TestMaskedArray) ... ok
test_pickling_subbaseclass (test_core.TestMaskedArray) ... ok
test_pickling_wstructured (test_core.TestMaskedArray) ... ok
test_set_element_as_object (test_core.TestMaskedArray) ... ok
test_single_element_subscript (test_core.TestMaskedArray) ... ok
test_str_repr (test_core.TestMaskedArray) ... ok
test_topython (test_core.TestMaskedArray) ... ok
test_void0d (test_core.TestMaskedArray) ... ok
test_TakeTransposeInnerOuter (test_core.TestMaskedArrayArithmetic) ... ok
test_addsumprod (test_core.TestMaskedArrayArithmetic) ... ok
test_arithmetic_with_masked_singleton (test_core.TestMaskedArrayArithmetic) ... ok
test_arithmetic_with_masked_singleton_on_1d_singleton (test_core.TestMaskedArrayArithmetic) ... ok
test_basic_arithmetic (test_core.TestMaskedArrayArithmetic) ... ok
test_basic_ufuncs (test_core.TestMaskedArrayArithmetic) ... ok
test_binops_d2D (test_core.TestMaskedArrayArithmetic) ... ok
test_count_func (test_core.TestMaskedArrayArithmetic) ... ok
test_divide_on_different_shapes (test_core.TestMaskedArrayArithmetic) ... ok
test_domained_binops_d2D (test_core.TestMaskedArrayArithmetic) ... ok
test_eq_on_structured (test_core.TestMaskedArrayArithmetic) ... ok
test_eq_w_None (test_core.TestMaskedArrayArithmetic) ... ok
test_eq_w_scalar (test_core.TestMaskedArrayArithmetic) ... ok
test_imag_real (test_core.TestMaskedArrayArithmetic) ... ok
test_limits_arithmetic (test_core.TestMaskedArrayArithmetic) ... ok
test_masked_singleton_arithmetic (test_core.TestMaskedArrayArithmetic) ... ok
test_masked_singleton_equality (test_core.TestMaskedArrayArithmetic) ... ok
test_methods_with_output (test_core.TestMaskedArrayArithmetic) ... ok
test_minimummaximum_func (test_core.TestMaskedArrayArithmetic) ... ok
test_minmax_func (test_core.TestMaskedArrayArithmetic) ... ok
test_minmax_funcs_with_output (test_core.TestMaskedArrayArithmetic) ... ok
test_minmax_methods (test_core.TestMaskedArrayArithmetic) ... ok
test_minmax_reduce (test_core.TestMaskedArrayArithmetic) ... ok
test_mixed_arithmetic (test_core.TestMaskedArrayArithmetic) ... ok
test_mod (test_core.TestMaskedArrayArithmetic) ... ok
test_ne_on_structured (test_core.TestMaskedArrayArithmetic) ... ok
test_noshrinking (test_core.TestMaskedArrayArithmetic) ... ok
test_numpyarithmetics (test_core.TestMaskedArrayArithmetic) ... ok
test_scalar_arithmetic (test_core.TestMaskedArrayArithmetic) ... ok
test_flat (test_core.TestMaskedArrayAttributes) ... ok
test_hardmask (test_core.TestMaskedArrayAttributes) ... ok
test_hardmask_again (test_core.TestMaskedArrayAttributes) ... ok
test_hardmask_oncemore_yay (test_core.TestMaskedArrayAttributes) ... ok
test_keepmask (test_core.TestMaskedArrayAttributes) ... ok
test_shrink_mask (test_core.TestMaskedArrayAttributes) ... ok
test_smallmask (test_core.TestMaskedArrayAttributes) ... ok
test_choose (test_core.TestMaskedArrayFunctions) ... ok
test_choose_with_out (test_core.TestMaskedArrayFunctions) ... ok
test_compress (test_core.TestMaskedArrayFunctions) ... ok
test_compressed (test_core.TestMaskedArrayFunctions) ... ok
test_flatten_mask (test_core.TestMaskedArrayFunctions) ... ok
test_identity (test_core.TestMaskedArrayFunctions) ... ok
test_make_mask (test_core.TestMaskedArrayFunctions) ... ok
test_make_mask_descr (test_core.TestMaskedArrayFunctions) ... ok
test_mask_or (test_core.TestMaskedArrayFunctions) ... ok
test_masked_equal_fill_value (test_core.TestMaskedArrayFunctions) ... ok
test_masked_equal_wlist (test_core.TestMaskedArrayFunctions) ... ok
test_masked_otherfunctions (test_core.TestMaskedArrayFunctions) ... ok
test_masked_where_bool (test_core.TestMaskedArrayFunctions) ... ok
test_masked_where_condition (test_core.TestMaskedArrayFunctions) ... ok
test_masked_where_oddities (test_core.TestMaskedArrayFunctions) ... ok
test_masked_where_shape_constraint (test_core.TestMaskedArrayFunctions) ... ok
test_on_ndarray (test_core.TestMaskedArrayFunctions) ... ok
test_power (test_core.TestMaskedArrayFunctions) ... ok
test_power_w_broadcasting (test_core.TestMaskedArrayFunctions) ... ok
test_reshape (test_core.TestMaskedArrayFunctions) ... ok
test_round (test_core.TestMaskedArrayFunctions) ... ok
test_round_with_output (test_core.TestMaskedArrayFunctions) ... ok
test_where (test_core.TestMaskedArrayFunctions) ... ok
test_where_type (test_core.TestMaskedArrayFunctions) ... ok
test_where_with_masked_choice (test_core.TestMaskedArrayFunctions) ... ok
test_where_with_masked_condition (test_core.TestMaskedArrayFunctions) ... ok
test_datafriendly_add (test_core.TestMaskedArrayInPlaceArithmetics) ... ok
test_datafriendly_add_arrays (test_core.TestMaskedArrayInPlaceArithmetics) ... ok
test_datafriendly_div (test_core.TestMaskedArrayInPlaceArithmetics) ... ok
test_datafriendly_mul (test_core.TestMaskedArrayInPlaceArithmetics) ... ok
test_datafriendly_mul_arrays (test_core.TestMaskedArrayInPlaceArithmetics) ... ok
test_datafriendly_pow (test_core.TestMaskedArrayInPlaceArithmetics) ... ok
test_datafriendly_sub (test_core.TestMaskedArrayInPlaceArithmetics) ... ok
test_datafriendly_sub_arrays (test_core.TestMaskedArrayInPlaceArithmetics) ... ok
test_inplace_addition_array (test_core.TestMaskedArrayInPlaceArithmetics) ... ok
test_inplace_addition_scalar (test_core.TestMaskedArrayInPlaceArithmetics) ... ok
test_inplace_division_array_float (test_core.TestMaskedArrayInPlaceArithmetics) ... ok
test_inplace_division_misc (test_core.TestMaskedArrayInPlaceArithmetics) ... ok
test_inplace_division_scalar_float (test_core.TestMaskedArrayInPlaceArithmetics) ... ok
test_inplace_division_scalar_int (test_core.TestMaskedArrayInPlaceArithmetics) ... ok
test_inplace_multiplication_array (test_core.TestMaskedArrayInPlaceArithmetics) ... ok
test_inplace_multiplication_scalar (test_core.TestMaskedArrayInPlaceArithmetics) ... ok
test_inplace_subtraction_array (test_core.TestMaskedArrayInPlaceArithmetics) ... ok
test_inplace_subtraction_scalar (test_core.TestMaskedArrayInPlaceArithmetics) ... ok
test_axis_methods_nomask (test_core.TestMaskedArrayMathMethods) ... ok
test_cumsumprod (test_core.TestMaskedArrayMathMethods) ... ok
test_cumsumprod_with_output (test_core.TestMaskedArrayMathMethods) ... ok
test_diag (test_core.TestMaskedArrayMathMethods) ... ok
test_meananom_object (test_core.TestMaskedArrayMathMethods) ... ok
test_prod_object (test_core.TestMaskedArrayMathMethods) ... ok
test_ptp (test_core.TestMaskedArrayMathMethods) ... ok
test_sum_object (test_core.TestMaskedArrayMathMethods) ... ok
test_trace (test_core.TestMaskedArrayMathMethods) ... ok
test_varstd (test_core.TestMaskedArrayMathMethods) ... ok
test_varstd_ddof (test_core.TestMaskedArrayMathMethods) ... ok
test_varstd_specialcases (test_core.TestMaskedArrayMathMethods) ... ok
test_varstd (test_core.TestMaskedArrayMathMethodsComplex) ... ok
test_allany (test_core.TestMaskedArrayMethods) ... ok
test_allany_oddities (test_core.TestMaskedArrayMethods) ... ok
test_allany_onmatrices (test_core.TestMaskedArrayMethods) ... ok
test_allclose (test_core.TestMaskedArrayMethods) ... ok
test_argmax_argmin (test_core.TestMaskedArrayMethods) ... ok
test_argsort (test_core.TestMaskedArrayMethods) ... ok
test_arraymethod (test_core.TestMaskedArrayMethods) ... ok
test_clip (test_core.TestMaskedArrayMethods) ... ok
test_compress (test_core.TestMaskedArrayMethods) ... ok
test_compressed (test_core.TestMaskedArrayMethods) ... ok
test_empty (test_core.TestMaskedArrayMethods) ... ok
test_fromflex (test_core.TestMaskedArrayMethods) ... ok
test_generic_methods (test_core.TestMaskedArrayMethods) ... ok
test_put (test_core.TestMaskedArrayMethods) ... ok
test_put_hardmask (test_core.TestMaskedArrayMethods) ... ok
test_putmask (test_core.TestMaskedArrayMethods) ... ok
test_ravel (test_core.TestMaskedArrayMethods) ... ok
test_reshape (test_core.TestMaskedArrayMethods) ... ok
test_sort (test_core.TestMaskedArrayMethods) ... ok
test_sort_2d (test_core.TestMaskedArrayMethods) ... ok
test_sort_flexible (test_core.TestMaskedArrayMethods) ... ok
test_squeeze (test_core.TestMaskedArrayMethods) ... ok
test_swapaxes (test_core.TestMaskedArrayMethods) ... ok
test_take (test_core.TestMaskedArrayMethods) ... ok
test_take_masked_indices (test_core.TestMaskedArrayMethods) ... ok
test_toflex (test_core.TestMaskedArrayMethods) ... ok
test_tolist (test_core.TestMaskedArrayMethods) ... ok
test_tolist_specialcase (test_core.TestMaskedArrayMethods) ... ok
test_element_len (test_core.TestMaskedFields) ... ok
test_getitem (test_core.TestMaskedFields) ... ok
test_getmaskarray (test_core.TestMaskedFields) ... ok
Check record access ... ok
test_set_record_element (test_core.TestMaskedFields) ... ok
test_set_record_slice (test_core.TestMaskedFields) ... ok
test_set_records_masks (test_core.TestMaskedFields) ... ok
test_setitem (test_core.TestMaskedFields) ... ok
test_view (test_core.TestMaskedFields) ... ok
test_view_to_dtype_and_type (test_core.TestMaskedView) ... ok
test_view_to_flexible_dtype (test_core.TestMaskedView) ... ok
test_view_to_nothing (test_core.TestMaskedView) ... ok
test_view_to_simple_dtype (test_core.TestMaskedView) ... ok
test_view_to_subdtype (test_core.TestMaskedView) ... ok
test_view_to_type (test_core.TestMaskedView) ... ok
test_minmax (test_core.TestUfuncs) ... ok
test_ndarray_mask (test_core.TestUfuncs) ... ok
test_reduce (test_core.TestUfuncs) ... ok
test_testUfuncRegression (test_core.TestUfuncs) ... ok
test_treatment_of_NotImplemented (test_core.TestUfuncs) ... ok
test_core.test_masked_array ... ok
test_core.test_append_masked_array ... ok
test_core.test_append_masked_array_along_axis ... ok
test_compress2d (test_extras.Test2DFunctions) ... ok
test_dot (test_extras.Test2DFunctions) ... ok
test_mask_rowcols (test_extras.Test2DFunctions) ... ok
test_3d (test_extras.TestApplyAlongAxis) ... ok
test_basic (test_extras.TestApplyOverAxes) ... ok
test_ediff1d (test_extras.TestArraySetOps) ... ok
test_ediff1d_ndarray (test_extras.TestArraySetOps) ... ok
test_ediff1d_tobegin (test_extras.TestArraySetOps) ... ok
test_ediff1d_tobegin_toend (test_extras.TestArraySetOps) ... ok
test_ediff1d_toend (test_extras.TestArraySetOps) ... ok
test_in1d (test_extras.TestArraySetOps) ... ok
test_in1d_invert (test_extras.TestArraySetOps) ... ok
test_intersect1d (test_extras.TestArraySetOps) ... ok
test_setdiff1d (test_extras.TestArraySetOps) ... ok
test_setdiff1d_char_array (test_extras.TestArraySetOps) ... ok
test_setxor1d (test_extras.TestArraySetOps) ... ok
test_union1d (test_extras.TestArraySetOps) ... ok
test_unique_allmasked (test_extras.TestArraySetOps) ... ok
test_unique_onlist (test_extras.TestArraySetOps) ... ok
test_unique_onmaskedarray (test_extras.TestArraySetOps) ... ok
test_complex (test_extras.TestAverage) ... ok
test_onintegers_with_mask (test_extras.TestAverage) ... ok
test_testAverage1 (test_extras.TestAverage) ... ok
test_testAverage2 (test_extras.TestAverage) ... ok
test_testAverage3 (test_extras.TestAverage) ... ok
test_1d (test_extras.TestConcatenator) ... ok
test_2d (test_extras.TestConcatenator) ... ok
test_1d_w_missing (test_extras.TestCorrcoef) ... ok
test_1d_wo_missing (test_extras.TestCorrcoef) ... ok
test_2d_w_missing (test_extras.TestCorrcoef) ... ok
test_2d_wo_missing (test_extras.TestCorrcoef) ... ok
test_ddof (test_extras.TestCorrcoef) ... ok
test_1d_w_missing (test_extras.TestCov) ... ok
test_1d_wo_missing (test_extras.TestCov) ... ok
test_2d_w_missing (test_extras.TestCov) ... ok
test_2d_wo_missing (test_extras.TestCov) ... ok
test_clump_masked (test_extras.TestGeneric) ... ok
test_clump_unmasked (test_extras.TestGeneric) ... ok
test_flatnotmasked_contiguous (test_extras.TestGeneric) ... ok
test_masked_all (test_extras.TestGeneric) ... ok
test_masked_all_like (test_extras.TestGeneric) ... ok
test_2d (test_extras.TestMedian) ... ok
test_2d_waxis (test_extras.TestMedian) ... ok
test_3d (test_extras.TestMedian) ... ok
test_contiguous (test_extras.TestNotMasked) ... ok
test_edges (test_extras.TestNotMasked) ... ok
test_polyfit (test_extras.TestPolynomial) ... ok
test_atleast2d (test_extras.TestShapeBase) ... ok
test_byview (test_mrecords.TestMRecords) ... ok
test_exotic_formats (test_mrecords.TestMRecords) ... ok
test_filled (test_mrecords.TestMRecords) ... ok
test_get (test_mrecords.TestMRecords) ... ok
test_hardmask (test_mrecords.TestMRecords) ... ok
test_pickling (test_mrecords.TestMRecords) ... ok
test_set_elements (test_mrecords.TestMRecords) ... ok
test_set_fields (test_mrecords.TestMRecords) ... ok
test_set_fields_mask (test_mrecords.TestMRecords) ... ok
test_set_mask (test_mrecords.TestMRecords) ... ok
test_set_mask_fromarray (test_mrecords.TestMRecords) ... ok
test_set_mask_fromfields (test_mrecords.TestMRecords) ... ok
test_setslices_hardmask (test_mrecords.TestMRecords) ... ok
test_tolist (test_mrecords.TestMRecords) ... ok
test_withnames (test_mrecords.TestMRecords) ... ok
test_addfield (test_mrecords.TestMRecordsImport) ... ok
test_fromarrays (test_mrecords.TestMRecordsImport) ... ok
test_fromrecords (test_mrecords.TestMRecordsImport) ... ok
test_fromrecords_wmask (test_mrecords.TestMRecordsImport) ... ok
test_fromtextfile (test_mrecords.TestMRecordsImport) ... ok
test_view_by_itself (test_mrecords.TestView) ... ok
test_view_flexible_type (test_mrecords.TestView) ... ok
test_view_simple_dtype (test_mrecords.TestView) ... ok
test_mrecords.test_record_array_with_object_field ... ok
test_clip (test_old_ma.TestArrayMethods) ... ok
test_cumprod (test_old_ma.TestArrayMethods) ... ok
test_cumsum (test_old_ma.TestArrayMethods) ... ok
test_ptp (test_old_ma.TestArrayMethods) ... ok
test_swapaxes (test_old_ma.TestArrayMethods) ... ok
test_trace (test_old_ma.TestArrayMethods) ... ok
test_varstd (test_old_ma.TestArrayMethods) ... ok
test_testAPI (test_old_ma.TestMa) ... ok
test_testAddSumProd (test_old_ma.TestMa) ... ok
test_testArithmetic (test_old_ma.TestMa) ... ok
test_testArrayAttributes (test_old_ma.TestMa) ... ok
test_testArrayMethods (test_old_ma.TestMa) ... ok
test_testAverage1 (test_old_ma.TestMa) ... ok
test_testAverage2 (test_old_ma.TestMa) ... ok
test_testBasic1d (test_old_ma.TestMa) ... ok
test_testBasic2d (test_old_ma.TestMa) ... ok
test_testCI (test_old_ma.TestMa) ... ok
test_testCopySize (test_old_ma.TestMa) ... ok
test_testInplace (test_old_ma.TestMa) ... ok
test_testMaPut (test_old_ma.TestMa) ... ok
test_testMasked (test_old_ma.TestMa) ... ok
test_testMinMax (test_old_ma.TestMa) ... ok
test_testMinMax2 (test_old_ma.TestMa) ... ok
test_testMixedArithmetic (test_old_ma.TestMa) ... ok
test_testOddFeatures (test_old_ma.TestMa) ... ok
test_testPickle (test_old_ma.TestMa) ... ok
test_testPut (test_old_ma.TestMa) ... ok
test_testScalarArithmetic (test_old_ma.TestMa) ... ok
test_testSingleElementSubscript (test_old_ma.TestMa) ... ok
test_testTakeTransposeInnerOuter (test_old_ma.TestMa) ... ok
test_testToPython (test_old_ma.TestMa) ... ok
test_testUfuncs1 (test_old_ma.TestMa) ... ok
test_xtestCount (test_old_ma.TestMa) ... ok
test_minmax (test_old_ma.TestUfuncs) ... ok
test_nonzero (test_old_ma.TestUfuncs) ... ok
test_reduce (test_old_ma.TestUfuncs) ... ok
test_testUfuncRegression (test_old_ma.TestUfuncs) ... ok
test_atleast_2d (test_regression.TestRegression) ... ok
test_ddof_corrcoef (test_regression.TestRegression) ... ok
test_masked_array (test_regression.TestRegression) ... ok
test_masked_array_create (test_regression.TestRegression) ... ok
test_masked_array_multiply (test_regression.TestRegression) ... ok
test_masked_array_repeat (test_regression.TestRegression) ... ok
test_masked_array_repr_unicode (test_regression.TestRegression) ... ok
test_mem_masked_where (test_regression.TestRegression) ... ok
test_set_fill_value_unicode_py3 (test_regression.TestRegression) ... ok
test_var_sets_maskedarray_scalar (test_regression.TestRegression) ... ok
test_attributepropagation (test_subclassing.TestSubclassing) ... ok
test_data_subclassing (test_subclassing.TestSubclassing) ... ok
test_masked_binary_operations (test_subclassing.TestSubclassing) ... ok
test_masked_binary_operations2 (test_subclassing.TestSubclassing) ... ok
test_masked_unary_operations (test_subclassing.TestSubclassing) ... ok
test_maskedarray_subclassing (test_subclassing.TestSubclassing) ... ok
test that repr uses the name of the subclass ... ok
test str with subclass that has overridden str, setitem ... ok
test_subclasspreservation (test_subclassing.TestSubclassing) ... ok
test_basic (test_defmatrix.TestAlgebra) ... ok
Check that 'not implemented' operations produce a failure. ... ok
Test raising a matrix to an integer power works as expected. ... ok
test_basic (test_defmatrix.TestCasting) ... ok
test_basic (test_defmatrix.TestCtor) ... ok
test_bmat_nondefault_str (test_defmatrix.TestCtor) ... ok
test_exceptions (test_defmatrix.TestCtor) ... ok
test_basic (test_defmatrix.TestIndexing) ... ok
test_instance_methods (test_defmatrix.TestMatrixReturn) ... ok
test_array_from_matrix_list (test_defmatrix.TestNewScalarIndexing) ... ok
test_array_to_list (test_defmatrix.TestNewScalarIndexing) ... ok
test_boolean_indexing (test_defmatrix.TestNewScalarIndexing) ... ok
test_dimesions (test_defmatrix.TestNewScalarIndexing) ... ok
test_fancy_indexing (test_defmatrix.TestNewScalarIndexing) ... ok
test_list_indexing (test_defmatrix.TestNewScalarIndexing) ... ok
test_matrix_element (test_defmatrix.TestNewScalarIndexing) ... ok
test_row_column_indexing (test_defmatrix.TestNewScalarIndexing) ... ok
test_scalar_indexing (test_defmatrix.TestNewScalarIndexing) ... ok
test_list (test_defmatrix.TestPower) ... ok
test_returntype (test_defmatrix.TestPower) ... ok
test_asmatrix (test_defmatrix.TestProperties) ... ok
test_basic (test_defmatrix.TestProperties) ... ok
test_comparisons (test_defmatrix.TestProperties) ... ok
test_max (test_defmatrix.TestProperties) ... ok
test_min (test_defmatrix.TestProperties) ... ok
test_noaxis (test_defmatrix.TestProperties) ... ok
test_pinv (test_defmatrix.TestProperties) ... ok
test_prod (test_defmatrix.TestProperties) ... ok
test_ptp (test_defmatrix.TestProperties) ... ok
test_repr (test_defmatrix.TestProperties) ... ok
Test whether matrix.sum(axis=1) preserves orientation. ... ok
test_var (test_defmatrix.TestProperties) ... ok
test_keywords (test_multiarray.TestView) ... ok
test_type (test_multiarray.TestView) ... ok
test_matscalar (test_numeric.TestDot) ... ok
Ticket #71 ... ok
Ticket #473 ... ok
Ticket #125 ... ok
Ticket #83 ... ok
test_oldtypes (test_oldnumeric.test_oldtypes) ... ok
gh-3803 ... ok
Ticket #552 ... ok
test_chebadd (test_chebyshev.TestArithmetic) ... ok
test_chebdiv (test_chebyshev.TestArithmetic) ... ok
test_chebmul (test_chebyshev.TestArithmetic) ... ok
test_chebmulx (test_chebyshev.TestArithmetic) ... ok
test_chebsub (test_chebyshev.TestArithmetic) ... ok
test_dimensions (test_chebyshev.TestCompanion) ... ok
test_linear_root (test_chebyshev.TestCompanion) ... ok
test_raises (test_chebyshev.TestCompanion) ... ok
test_chebdomain (test_chebyshev.TestConstants) ... ok
test_chebone (test_chebyshev.TestConstants) ... ok
test_chebx (test_chebyshev.TestConstants) ... ok
test_chebzero (test_chebyshev.TestConstants) ... ok
test_chebder (test_chebyshev.TestDerivative) ... ok
test_chebder_axis (test_chebyshev.TestDerivative) ... ok
test_chebgrid2d (test_chebyshev.TestEvaluation) ... ok
test_chebgrid3d (test_chebyshev.TestEvaluation) ... ok
test_chebval (test_chebyshev.TestEvaluation) ... ok
test_chebval2d (test_chebyshev.TestEvaluation) ... ok
test_chebval3d (test_chebyshev.TestEvaluation) ... ok
test_chebfit (test_chebyshev.TestFitting) ... ok
test_100 (test_chebyshev.TestGauss) ... ok
test_chebint (test_chebyshev.TestIntegral) ... ok
test_chebint_axis (test_chebyshev.TestIntegral) ... ok
test_cheb2poly (test_chebyshev.TestMisc) ... ok
test_chebfromroots (test_chebyshev.TestMisc) ... ok
test_chebline (test_chebyshev.TestMisc) ... ok
test_chebpts1 (test_chebyshev.TestMisc) ... ok
test_chebpts2 (test_chebyshev.TestMisc) ... ok
test_chebroots (test_chebyshev.TestMisc) ... ok
test_chebtrim (test_chebyshev.TestMisc) ... ok
test_poly2cheb (test_chebyshev.TestMisc) ... ok
test_weight (test_chebyshev.TestMisc) ... ok
test__cseries_to_zseries (test_chebyshev.TestPrivate) ... ok
test__zseries_to_cseries (test_chebyshev.TestPrivate) ... ok
test_chebvander (test_chebyshev.TestVander) ... ok
test_chebvander2d (test_chebyshev.TestVander) ... ok
test_chebvander3d (test_chebyshev.TestVander) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>, <class 'numpy.polynomial.polynomial.Polynomial'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>, <class 'numpy.polynomial.polynomial.Polynomial'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>, <class 'numpy.polynomial.legendre.Legendre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>, <class 'numpy.polynomial.legendre.Legendre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>, <class 'numpy.polynomial.chebyshev.Chebyshev'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>, <class 'numpy.polynomial.chebyshev.Chebyshev'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>, <class 'numpy.polynomial.laguerre.Laguerre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>, <class 'numpy.polynomial.laguerre.Laguerre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>, <class 'numpy.polynomial.hermite.Hermite'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>, <class 'numpy.polynomial.hermite.Hermite'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>, <class 'numpy.polynomial.hermite_e.HermiteE'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>, <class 'numpy.polynomial.hermite_e.HermiteE'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>, <class 'numpy.polynomial.polynomial.Polynomial'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>, <class 'numpy.polynomial.polynomial.Polynomial'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>, <class 'numpy.polynomial.legendre.Legendre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>, <class 'numpy.polynomial.legendre.Legendre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>, <class 'numpy.polynomial.chebyshev.Chebyshev'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>, <class 'numpy.polynomial.chebyshev.Chebyshev'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>, <class 'numpy.polynomial.laguerre.Laguerre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>, <class 'numpy.polynomial.laguerre.Laguerre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>, <class 'numpy.polynomial.hermite.Hermite'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>, <class 'numpy.polynomial.hermite.Hermite'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>, <class 'numpy.polynomial.hermite_e.HermiteE'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>, <class 'numpy.polynomial.hermite_e.HermiteE'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>, <class 'numpy.polynomial.polynomial.Polynomial'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>, <class 'numpy.polynomial.polynomial.Polynomial'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>, <class 'numpy.polynomial.legendre.Legendre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>, <class 'numpy.polynomial.legendre.Legendre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>, <class 'numpy.polynomial.chebyshev.Chebyshev'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>, <class 'numpy.polynomial.chebyshev.Chebyshev'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>, <class 'numpy.polynomial.laguerre.Laguerre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>, <class 'numpy.polynomial.laguerre.Laguerre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>, <class 'numpy.polynomial.hermite.Hermite'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>, <class 'numpy.polynomial.hermite.Hermite'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>, <class 'numpy.polynomial.hermite_e.HermiteE'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>, <class 'numpy.polynomial.hermite_e.HermiteE'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>, <class 'numpy.polynomial.polynomial.Polynomial'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>, <class 'numpy.polynomial.polynomial.Polynomial'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>, <class 'numpy.polynomial.legendre.Legendre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>, <class 'numpy.polynomial.legendre.Legendre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>, <class 'numpy.polynomial.chebyshev.Chebyshev'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>, <class 'numpy.polynomial.chebyshev.Chebyshev'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>, <class 'numpy.polynomial.laguerre.Laguerre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>, <class 'numpy.polynomial.laguerre.Laguerre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>, <class 'numpy.polynomial.hermite.Hermite'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>, <class 'numpy.polynomial.hermite.Hermite'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>, <class 'numpy.polynomial.hermite_e.HermiteE'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>, <class 'numpy.polynomial.hermite_e.HermiteE'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>, <class 'numpy.polynomial.polynomial.Polynomial'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>, <class 'numpy.polynomial.polynomial.Polynomial'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>, <class 'numpy.polynomial.legendre.Legendre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>, <class 'numpy.polynomial.legendre.Legendre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>, <class 'numpy.polynomial.chebyshev.Chebyshev'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>, <class 'numpy.polynomial.chebyshev.Chebyshev'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>, <class 'numpy.polynomial.laguerre.Laguerre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>, <class 'numpy.polynomial.laguerre.Laguerre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>, <class 'numpy.polynomial.hermite.Hermite'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>, <class 'numpy.polynomial.hermite.Hermite'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>, <class 'numpy.polynomial.hermite_e.HermiteE'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>, <class 'numpy.polynomial.hermite_e.HermiteE'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>, <class 'numpy.polynomial.polynomial.Polynomial'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>, <class 'numpy.polynomial.polynomial.Polynomial'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>, <class 'numpy.polynomial.legendre.Legendre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>, <class 'numpy.polynomial.legendre.Legendre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>, <class 'numpy.polynomial.chebyshev.Chebyshev'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>, <class 'numpy.polynomial.chebyshev.Chebyshev'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>, <class 'numpy.polynomial.laguerre.Laguerre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>, <class 'numpy.polynomial.laguerre.Laguerre'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>, <class 'numpy.polynomial.hermite.Hermite'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>, <class 'numpy.polynomial.hermite.Hermite'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>, <class 'numpy.polynomial.hermite_e.HermiteE'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>, <class 'numpy.polynomial.hermite_e.HermiteE'>) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.polynomial.Polynomial'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.legendre.Legendre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.chebyshev.Chebyshev'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.laguerre.Laguerre'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite.Hermite'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_classes.test_class_methods(<class 'numpy.polynomial.hermite_e.HermiteE'>,) ... ok
test_hermadd (test_hermite.TestArithmetic) ... ok
test_hermdiv (test_hermite.TestArithmetic) ... ok
test_hermmul (test_hermite.TestArithmetic) ... ok
test_hermmulx (test_hermite.TestArithmetic) ... ok
test_hermsub (test_hermite.TestArithmetic) ... ok
test_dimensions (test_hermite.TestCompanion) ... ok
test_linear_root (test_hermite.TestCompanion) ... ok
test_raises (test_hermite.TestCompanion) ... ok
test_hermdomain (test_hermite.TestConstants) ... ok
test_hermone (test_hermite.TestConstants) ... ok
test_hermx (test_hermite.TestConstants) ... ok
test_hermzero (test_hermite.TestConstants) ... ok
test_hermder (test_hermite.TestDerivative) ... ok
test_hermder_axis (test_hermite.TestDerivative) ... ok
test_hermgrid2d (test_hermite.TestEvaluation) ... ok
test_hermgrid3d (test_hermite.TestEvaluation) ... ok
test_hermval (test_hermite.TestEvaluation) ... ok
test_hermval2d (test_hermite.TestEvaluation) ... ok
test_hermval3d (test_hermite.TestEvaluation) ... ok
test_hermfit (test_hermite.TestFitting) ... ok
test_100 (test_hermite.TestGauss) ... ok
test_hermint (test_hermite.TestIntegral) ... ok
test_hermint_axis (test_hermite.TestIntegral) ... ok
test_herm2poly (test_hermite.TestMisc) ... ok
test_hermfromroots (test_hermite.TestMisc) ... ok
test_hermline (test_hermite.TestMisc) ... ok
test_hermroots (test_hermite.TestMisc) ... ok
test_hermtrim (test_hermite.TestMisc) ... ok
test_poly2herm (test_hermite.TestMisc) ... ok
test_weight (test_hermite.TestMisc) ... ok
test_hermvander (test_hermite.TestVander) ... ok
test_hermvander2d (test_hermite.TestVander) ... ok
test_hermvander3d (test_hermite.TestVander) ... ok
test_hermeadd (test_hermite_e.TestArithmetic) ... ok
test_hermediv (test_hermite_e.TestArithmetic) ... ok
test_hermemul (test_hermite_e.TestArithmetic) ... ok
test_hermemulx (test_hermite_e.TestArithmetic) ... ok
test_hermesub (test_hermite_e.TestArithmetic) ... ok
test_dimensions (test_hermite_e.TestCompanion) ... ok
test_linear_root (test_hermite_e.TestCompanion) ... ok
test_raises (test_hermite_e.TestCompanion) ... ok
test_hermedomain (test_hermite_e.TestConstants) ... ok
test_hermeone (test_hermite_e.TestConstants) ... ok
test_hermex (test_hermite_e.TestConstants) ... ok
test_hermezero (test_hermite_e.TestConstants) ... ok
test_hermeder (test_hermite_e.TestDerivative) ... ok
test_hermeder_axis (test_hermite_e.TestDerivative) ... ok
test_hermegrid2d (test_hermite_e.TestEvaluation) ... ok
test_hermegrid3d (test_hermite_e.TestEvaluation) ... ok
test_hermeval (test_hermite_e.TestEvaluation) ... ok
test_hermeval2d (test_hermite_e.TestEvaluation) ... ok
test_hermeval3d (test_hermite_e.TestEvaluation) ... ok
test_hermefit (test_hermite_e.TestFitting) ... ok
test_100 (test_hermite_e.TestGauss) ... ok
test_hermeint (test_hermite_e.TestIntegral) ... ok
test_hermeint_axis (test_hermite_e.TestIntegral) ... ok
test_herme2poly (test_hermite_e.TestMisc) ... ok
test_hermefromroots (test_hermite_e.TestMisc) ... ok
test_hermeline (test_hermite_e.TestMisc) ... ok
test_hermeroots (test_hermite_e.TestMisc) ... ok
test_hermetrim (test_hermite_e.TestMisc) ... ok
test_poly2herme (test_hermite_e.TestMisc) ... ok
test_weight (test_hermite_e.TestMisc) ... ok
test_hermevander (test_hermite_e.TestVander) ... ok
test_hermevander2d (test_hermite_e.TestVander) ... ok
test_hermevander3d (test_hermite_e.TestVander) ... ok
test_lagadd (test_laguerre.TestArithmetic) ... ok
test_lagdiv (test_laguerre.TestArithmetic) ... ok
test_lagmul (test_laguerre.TestArithmetic) ... ok
test_lagmulx (test_laguerre.TestArithmetic) ... ok
test_lagsub (test_laguerre.TestArithmetic) ... ok
test_dimensions (test_laguerre.TestCompanion) ... ok
test_linear_root (test_laguerre.TestCompanion) ... ok
test_raises (test_laguerre.TestCompanion) ... ok
test_lagdomain (test_laguerre.TestConstants) ... ok
test_lagone (test_laguerre.TestConstants) ... ok
test_lagx (test_laguerre.TestConstants) ... ok
test_lagzero (test_laguerre.TestConstants) ... ok
test_lagder (test_laguerre.TestDerivative) ... ok
test_lagder_axis (test_laguerre.TestDerivative) ... ok
test_laggrid2d (test_laguerre.TestEvaluation) ... ok
test_laggrid3d (test_laguerre.TestEvaluation) ... ok
test_lagval (test_laguerre.TestEvaluation) ... ok
test_lagval2d (test_laguerre.TestEvaluation) ... ok
test_lagval3d (test_laguerre.TestEvaluation) ... ok
test_lagfit (test_laguerre.TestFitting) ... ok
test_100 (test_laguerre.TestGauss) ... ok
test_lagint (test_laguerre.TestIntegral) ... ok
test_lagint_axis (test_laguerre.TestIntegral) ... ok
test_lag2poly (test_laguerre.TestMisc) ... ok
test_lagfromroots (test_laguerre.TestMisc) ... ok
test_lagline (test_laguerre.TestMisc) ... ok
test_lagroots (test_laguerre.TestMisc) ... ok
test_lagtrim (test_laguerre.TestMisc) ... ok
test_poly2lag (test_laguerre.TestMisc) ... ok
test_weight (test_laguerre.TestMisc) ... ok
test_lagvander (test_laguerre.TestVander) ... ok
test_lagvander2d (test_laguerre.TestVander) ... ok
test_lagvander3d (test_laguerre.TestVander) ... ok
test_legadd (test_legendre.TestArithmetic) ... ok
test_legdiv (test_legendre.TestArithmetic) ... ok
test_legmul (test_legendre.TestArithmetic) ... ok
test_legmulx (test_legendre.TestArithmetic) ... ok
test_legsub (test_legendre.TestArithmetic) ... ok
test_dimensions (test_legendre.TestCompanion) ... ok
test_linear_root (test_legendre.TestCompanion) ... ok
test_raises (test_legendre.TestCompanion) ... ok
test_legdomain (test_legendre.TestConstants) ... ok
test_legone (test_legendre.TestConstants) ... ok
test_legx (test_legendre.TestConstants) ... ok
test_legzero (test_legendre.TestConstants) ... ok
test_legder (test_legendre.TestDerivative) ... ok
test_legder_axis (test_legendre.TestDerivative) ... ok
test_leggrid2d (test_legendre.TestEvaluation) ... ok
test_leggrid3d (test_legendre.TestEvaluation) ... ok
test_legval (test_legendre.TestEvaluation) ... ok
test_legval2d (test_legendre.TestEvaluation) ... ok
test_legval3d (test_legendre.TestEvaluation) ... ok
test_legfit (test_legendre.TestFitting) ... ok
test_100 (test_legendre.TestGauss) ... ok
test_legint (test_legendre.TestIntegral) ... ok
test_legint_axis (test_legendre.TestIntegral) ... ok
test_leg2poly (test_legendre.TestMisc) ... ok
test_legfromroots (test_legendre.TestMisc) ... ok
test_legline (test_legendre.TestMisc) ... ok
test_legroots (test_legendre.TestMisc) ... ok
test_legtrim (test_legendre.TestMisc) ... ok
test_poly2leg (test_legendre.TestMisc) ... ok
test_weight (test_legendre.TestMisc) ... ok
test_legvander (test_legendre.TestVander) ... ok
test_legvander2d (test_legendre.TestVander) ... ok
test_legvander3d (test_legendre.TestVander) ... ok
test_polyadd (test_polynomial.TestArithmetic) ... ok
test_polydiv (test_polynomial.TestArithmetic) ... ok
test_polymul (test_polynomial.TestArithmetic) ... ok
test_polymulx (test_polynomial.TestArithmetic) ... ok
test_polysub (test_polynomial.TestArithmetic) ... ok
test_dimensions (test_polynomial.TestCompanion) ... ok
test_linear_root (test_polynomial.TestCompanion) ... ok
test_raises (test_polynomial.TestCompanion) ... ok
test_polydomain (test_polynomial.TestConstants) ... ok
test_polyone (test_polynomial.TestConstants) ... ok
test_polyx (test_polynomial.TestConstants) ... ok
test_polyzero (test_polynomial.TestConstants) ... ok
test_polyder (test_polynomial.TestDerivative) ... ok
test_polyder_axis (test_polynomial.TestDerivative) ... ok
test_polygrid2d (test_polynomial.TestEvaluation) ... ok
test_polygrid3d (test_polynomial.TestEvaluation) ... ok
test_polyval (test_polynomial.TestEvaluation) ... ok
test_polyval2d (test_polynomial.TestEvaluation) ... ok
test_polyval3d (test_polynomial.TestEvaluation) ... ok
test_polyint (test_polynomial.TestIntegral) ... ok
test_polyint_axis (test_polynomial.TestIntegral) ... ok
test_polyfit (test_polynomial.TestMisc) ... ok
test_polyfromroots (test_polynomial.TestMisc) ... ok
test_polyline (test_polynomial.TestMisc) ... ok
test_polyroots (test_polynomial.TestMisc) ... ok
test_polytrim (test_polynomial.TestMisc) ... ok
test_polyvander (test_polynomial.TestVander) ... ok
test_polyvander2d (test_polynomial.TestVander) ... ok
test_polyvander3d (test_polynomial.TestVander) ... ok
test_getdomain (test_polyutils.TestDomain) ... ok
test_mapdomain (test_polyutils.TestDomain) ... ok
test_mapparms (test_polyutils.TestDomain) ... ok
test_as_series (test_polyutils.TestMisc) ... ok
test_trimcoef (test_polyutils.TestMisc) ... ok
test_trimseq (test_polyutils.TestMisc) ... ok
test_chebyshev_str (test_printing.test_repr) ... ok
test_hermiteE_repr (test_printing.test_repr) ... ok
test_hermite_repr (test_printing.test_repr) ... ok
test_laguerre_repr (test_printing.test_repr) ... ok
test_legendre_repr (test_printing.test_repr) ... ok
test_polynomial_str (test_printing.test_repr) ... ok
test_chebyshev_str (test_printing.test_str) ... ok
test_hermiteE_str (test_printing.test_str) ... ok
test_hermite_str (test_printing.test_str) ... ok
test_laguerre_str (test_printing.test_str) ... ok
test_legendre_str (test_printing.test_str) ... ok
test_polynomial_str (test_printing.test_str) ... ok
test_n_zero (test_random.TestBinomial) ... ok
test_p_is_nan (test_random.TestBinomial) ... ok
test_basic (test_random.TestMultinomial) ... ok
test_int_negative_interval (test_random.TestMultinomial) ... ok
test_size (test_random.TestMultinomial) ... ok
test_zero_probability (test_random.TestMultinomial) ... ok
test_beta (test_random.TestRandomDist) ... ok
test_binomial (test_random.TestRandomDist) ... ok
test_bytes (test_random.TestRandomDist) ... ok
test_chisquare (test_random.TestRandomDist) ... ok
test_choice_exceptions (test_random.TestRandomDist) ... ok
test_choice_noninteger (test_random.TestRandomDist) ... ok
test_choice_nonuniform_noreplace (test_random.TestRandomDist) ... ok
test_choice_nonuniform_replace (test_random.TestRandomDist) ... ok
test_choice_return_shape (test_random.TestRandomDist) ... ok
test_choice_uniform_noreplace (test_random.TestRandomDist) ... ok
test_choice_uniform_replace (test_random.TestRandomDist) ... ok
test_dirichlet (test_random.TestRandomDist) ... ok
test_dirichlet_size (test_random.TestRandomDist) ... ok
test_exponential (test_random.TestRandomDist) ... ok
test_f (test_random.TestRandomDist) ... ok
test_gamma (test_random.TestRandomDist) ... ok
test_geometric (test_random.TestRandomDist) ... ok
test_gumbel (test_random.TestRandomDist) ... ok
test_hypergeometric (test_random.TestRandomDist) ... ok
test_laplace (test_random.TestRandomDist) ... ok
test_logistic (test_random.TestRandomDist) ... ok
test_lognormal (test_random.TestRandomDist) ... ok
test_logseries (test_random.TestRandomDist) ... ok
test_multinomial (test_random.TestRandomDist) ... ok
test_multivariate_normal (test_random.TestRandomDist) ... ok
test_negative_binomial (test_random.TestRandomDist) ... ok
test_noncentral_chisquare (test_random.TestRandomDist) ... ok
test_noncentral_f (test_random.TestRandomDist) ... ok
test_normal (test_random.TestRandomDist) ... ok
test_pareto (test_random.TestRandomDist) ... ok
test_poisson (test_random.TestRandomDist) ... ok
test_poisson_exceptions (test_random.TestRandomDist) ... ok
test_power (test_random.TestRandomDist) ... ok
test_rand (test_random.TestRandomDist) ... ok
test_randint (test_random.TestRandomDist) ... ok
test_randn (test_random.TestRandomDist) ... ok
test_random_integers (test_random.TestRandomDist) ... ok
test_random_sample (test_random.TestRandomDist) ... ok
test_rayleigh (test_random.TestRandomDist) ... ok
test_shuffle (test_random.TestRandomDist) ... ok
test_shuffle_flexible (test_random.TestRandomDist) ... ok
test_shuffle_masked (test_random.TestRandomDist) ... ok
test_standard_cauchy (test_random.TestRandomDist) ... ok
test_standard_exponential (test_random.TestRandomDist) ... ok
test_standard_gamma (test_random.TestRandomDist) ... ok
test_standard_normal (test_random.TestRandomDist) ... ok
test_standard_t (test_random.TestRandomDist) ... ok
test_triangular (test_random.TestRandomDist) ... ok
test_uniform (test_random.TestRandomDist) ... ok
test_vonmises (test_random.TestRandomDist) ... ok
test_wald (test_random.TestRandomDist) ... ok
test_weibull (test_random.TestRandomDist) ... ok
test_zipf (test_random.TestRandomDist) ... ok
Make sure we can accept old state tuples that do not have the cached ... ok
test_basic (test_random.TestSetState) ... ok
Make sure the cached every-other-Gaussian is reset. ... ok
When the state is saved with a cached Gaussian, make sure the cached ... ok
Ensure that the negative binomial results take floating point ... ok
test_VonMises_range (test_regression.TestRegression) ... ok
test_call_within_randomstate (test_regression.TestRegression) ... ok
test_hypergeometric_range (test_regression.TestRegression) ... ok
test_logseries_convergence (test_regression.TestRegression) ... ok
test_multivariate_normal_size_types (test_regression.TestRegression) ... ok
test_permutation_longs (test_regression.TestRegression) ... ok
test_randint_range (test_regression.TestRegression) ... ok
test_shuffle_mixed_dimension (test_regression.TestRegression) ... ok
test_decorators.test_slow ... ok
test_decorators.test_setastest ... ok
test_decorators.test_skip_functions_hardcoded ... ok
test_decorators.test_skip_functions_callable ... ok
test_decorators.test_skip_generators_hardcoded ... ok
test_decorators.test_skip_generators_callable ... ok
test_decorators.test_deprecated ... ok
Test two arrays with different shapes are found not equal. ... ok
test_array_likes (test_utils.TestAlmostEqual) ... ok
Test two equal array of rank 1 are found equal. ... ok
Test two different array of rank 1 are found not equal. ... ok
Test two equal array of rank 2 are found equal. ... ok
test_complex (test_utils.TestAlmostEqual) ... ok
test_complex_item (test_utils.TestAlmostEqual) ... ok
Check the message is formatted correctly for the decimal value ... ok
test_inf_item (test_utils.TestAlmostEqual) ... ok
test_nan_item (test_utils.TestAlmostEqual) ... ok
Test object arrays. ... ok
test_simple_item (test_utils.TestAlmostEqual) ... ok
test_nan_array (test_utils.TestApproxEqual) ... ok
test_nan_items (test_utils.TestApproxEqual) ... ok
test_simple_arrays (test_utils.TestApproxEqual) ... ok
test_simple_items (test_utils.TestApproxEqual) ... ok
Test two arrays with different shapes are found not equal. ... ok
test_array_likes (test_utils.TestArrayAlmostEqual) ... ok
Test two equal array of rank 1 are found equal. ... ok
Test two different array of rank 1 are found not equal. ... ok
Test two equal array of rank 2 are found equal. ... ok
test_inf (test_utils.TestArrayAlmostEqual) ... ok
test_nan (test_utils.TestArrayAlmostEqual) ... ok
Test object arrays. ... ok
test_simple (test_utils.TestArrayAlmostEqual) ... ok
test_big_float32 (test_utils.TestArrayAlmostEqualNulp) ... ok
test_big_float64 (test_utils.TestArrayAlmostEqualNulp) ... ok
test_complex (test_utils.TestArrayAlmostEqualNulp) ... ok
test_complex2 (test_utils.TestArrayAlmostEqualNulp) ... ok
test_simple (test_utils.TestArrayAlmostEqualNulp) ... KNOWNFAIL: Github issue #347
test_simple2 (test_utils.TestArrayAlmostEqualNulp) ... ok
Test two arrays with different shapes are found not equal. ... ok
test_array_likes (test_utils.TestArrayEqual) ... ok
Test two equal array of rank 1 are found equal. ... ok
Test two different array of rank 1 are found not equal. ... ok
Test two equal array of rank 2 are found equal. ... ok
Test rank 1 array for all dtypes. ... ok
Test rank 3 array for all dtypes. ... ok
Test arrays with nan values in them. ... ok
Test object arrays. ... ok
Test record arrays. ... ok
Test two arrays with different shapes are found not equal. ... ok
test_min_int (test_utils.TestAssertAllclose) ... ok
test_simple (test_utils.TestAssertAllclose) ... ok
test_build_err_msg_custom_names (test_utils.TestBuildErrorMessage) ... ok
test_build_err_msg_custom_precision (test_utils.TestBuildErrorMessage) ... ok
test_build_err_msg_defaults (test_utils.TestBuildErrorMessage) ... ok
test_build_err_msg_no_verbose (test_utils.TestBuildErrorMessage) ... ok
Test two arrays with different shapes are found not equal. ... ok
test_array_likes (test_utils.TestEqual) ... ok
Test two equal array of rank 1 are found equal. ... ok
Test two different array of rank 1 are found not equal. ... ok
Test two equal array of rank 2 are found equal. ... ok
test_complex (test_utils.TestEqual) ... ok
test_complex_item (test_utils.TestEqual) ... ok
Test rank 1 array for all dtypes. ... ok
Test rank 3 array for all dtypes. ... ok
test_inf_items (test_utils.TestEqual) ... ok
Test arrays with nan values in them. ... ok
test_nan_items (test_utils.TestEqual) ... ok
test_negative_zero (test_utils.TestEqual) ... ok
test_non_numeric (test_utils.TestEqual) ... ok
Test object arrays. ... ok
Test record arrays. ... ok
Test two arrays with different shapes are found not equal. ... ok
test_catch_no_raise (test_utils.TestRaises) ... ok
test_correct_catch (test_utils.TestRaises) ... ok
test_wrong_exception (test_utils.TestRaises) ... ok
test_double (test_utils.TestULP) ... ok
test_equal (test_utils.TestULP) ... ok
test_inf (test_utils.TestULP) ... ok
test_nan (test_utils.TestULP) ... ok
test_single (test_utils.TestULP) ... ok
test_warn (test_utils.TestWarns) ... ok
test_warn_wrong_warning (test_utils.TestWarns) ... ok
test_basic (test_ctypeslib.TestLoadLibrary) ... ok
Regression for #801: load_library with a full library name ... ok
test_dtype (test_ctypeslib.TestNdpointer) ... ok
test_flags (test_ctypeslib.TestNdpointer) ... ok
test_ndim (test_ctypeslib.TestNdpointer) ... ok
test_shape (test_ctypeslib.TestNdpointer) ... ok
test_matlib.test_empty ... ok
test_matlib.test_ones ... ok
test_matlib.test_zeros ... ok
test_matlib.test_identity ... ok
test_matlib.test_eye ... ok
test_matlib.test_rand ... ok
test_matlib.test_randn ... ok
test_matlib.test_repmat ... ok
----------------------------------------------------------------------
Ran 5514 tests in 39.820s
OK (KNOWNFAIL=5, SKIP=2)
$ python -c 'import scipy; scipy.show_config()'
lapack_opt_info:
libraries = ['mkl_lapack95_lp64', 'mkl_rt', 'pthread', 'iomp5', 'iomp5']
library_dirs = ['/opt/intel/composer_xe_2013.1.117/mkl/lib/intel64', '/opt/intel/composer_xe_2013.1.117/compiler/lib/intel64']
define_macros = [('SCIPY_MKL_H', None)]
include_dirs = ['/opt/intel/composer_xe_2013.1.117/compiler/include', '/opt/intel/composer_xe_2013.1.117/mkl/include']
blas_opt_info:
libraries = ['mkl_rt', 'pthread', 'iomp5']
library_dirs = ['/opt/intel/composer_xe_2013.1.117/mkl/lib/intel64', '/opt/intel/composer_xe_2013.1.117/compiler/lib/intel64']
define_macros = [('SCIPY_MKL_H', None)]
include_dirs = ['/opt/intel/composer_xe_2013.1.117/compiler/include', '/opt/intel/composer_xe_2013.1.117/mkl/include']
openblas_info:
NOT AVAILABLE
lapack_mkl_info:
libraries = ['mkl_lapack95_lp64', 'mkl_rt', 'pthread', 'iomp5', 'iomp5']
library_dirs = ['/opt/intel/composer_xe_2013.1.117/mkl/lib/intel64', '/opt/intel/composer_xe_2013.1.117/compiler/lib/intel64']
define_macros = [('SCIPY_MKL_H', None)]
include_dirs = ['/opt/intel/composer_xe_2013.1.117/compiler/include', '/opt/intel/composer_xe_2013.1.117/mkl/include']
blas_mkl_info:
libraries = ['mkl_rt', 'pthread', 'iomp5']
library_dirs = ['/opt/intel/composer_xe_2013.1.117/mkl/lib/intel64', '/opt/intel/composer_xe_2013.1.117/compiler/lib/intel64']
define_macros = [('SCIPY_MKL_H', None)]
include_dirs = ['/opt/intel/composer_xe_2013.1.117/compiler/include', '/opt/intel/composer_xe_2013.1.117/mkl/include']
mkl_info:
libraries = ['mkl_rt', 'pthread', 'iomp5']
library_dirs = ['/opt/intel/composer_xe_2013.1.117/mkl/lib/intel64', '/opt/intel/composer_xe_2013.1.117/compiler/lib/intel64']
define_macros = [('SCIPY_MKL_H', None)]
include_dirs = ['/opt/intel/composer_xe_2013.1.117/compiler/include', '/opt/intel/composer_xe_2013.1.117/mkl/include']
$ python -c 'import scipy; scipy.test(verbose=10)'
Running unit tests for scipy
NumPy version 1.9.0.dev-52d5d10
NumPy is installed in /projects/ps-yeolab/software/lib/python2.7/site-packages/numpy
SciPy version 0.15.0.dev-f14f8bd
SciPy is installed in /projects/ps-yeolab/software/lib/python2.7/site-packages/scipy
Python version 2.7.5 (default, Feb 4 2014, 17:34:21) [GCC 4.4.6 20120305 (Red Hat 4.4.6-4)]
nose version 1.3.0
nose.config: INFO: Ignoring files matching ['^\\.', '^_', '^setup\\.py$']
nose.config: INFO: Excluding tests matching ['f2py_ext', 'f2py_f90_ext', 'gen_ext', 'pyrex_ext', 'swig_ext']
test_linkage_cophenet_tdist_Z (test_hierarchy.TestCopheneticDistance) ... ok
test_linkage_cophenet_tdist_Z_Y (test_hierarchy.TestCopheneticDistance) ... ok
test_correspond_2_and_up (test_hierarchy.TestCorrespond) ... ok
test_correspond_4_and_up (test_hierarchy.TestCorrespond) ... ok
test_correspond_4_and_up_2 (test_hierarchy.TestCorrespond) ... ok
test_correspond_empty (test_hierarchy.TestCorrespond) ... ok
test_num_obs_linkage_multi_matrix (test_hierarchy.TestCorrespond) ... ok
test_dendrogram_plot (test_hierarchy.TestDendrogram) ... ERROR
test_dendrogram_single_linkage_tdist (test_hierarchy.TestDendrogram) ... ok
test_fcluster_maxclusts_2 (test_hierarchy.TestFcluster) ... ok
test_fcluster_maxclusts_3 (test_hierarchy.TestFcluster) ... ok
test_fcluster_maxclusts_4 (test_hierarchy.TestFcluster) ... ok
test_fclusterdata_maxclusts_2 (test_hierarchy.TestFcluster) ... ok
test_fclusterdata_maxclusts_3 (test_hierarchy.TestFcluster) ... ok
test_fclusterdata_maxclusts_4 (test_hierarchy.TestFcluster) ... ok
test_from_mlab_linkage_empty (test_hierarchy.TestFromMLabLinkage) ... ok
test_from_mlab_linkage_multiple_rows (test_hierarchy.TestFromMLabLinkage) ... ok
test_from_mlab_linkage_single_row (test_hierarchy.TestFromMLabLinkage) ... ok
test_complete_inconsistent_tdist_1 (test_hierarchy.TestInconsistent) ... ok
test_complete_inconsistent_tdist_2 (test_hierarchy.TestInconsistent) ... ok
test_complete_inconsistent_tdist_3 (test_hierarchy.TestInconsistent) ... ok
test_complete_inconsistent_tdist_4 (test_hierarchy.TestInconsistent) ... ok
test_single_inconsistent_Q_1 (test_hierarchy.TestInconsistent) ... ok
test_single_inconsistent_Q_2 (test_hierarchy.TestInconsistent) ... ok
test_single_inconsistent_Q_3 (test_hierarchy.TestInconsistent) ... ok
test_single_inconsistent_Q_4 (test_hierarchy.TestInconsistent) ... ok
test_single_inconsistent_tdist_1 (test_hierarchy.TestInconsistent) ... ok
test_single_inconsistent_tdist_2 (test_hierarchy.TestInconsistent) ... ok
test_single_inconsistent_tdist_3 (test_hierarchy.TestInconsistent) ... ok
test_single_inconsistent_tdist_4 (test_hierarchy.TestInconsistent) ... ok
test_is_isomorphic_1 (test_hierarchy.TestIsIsomorphic) ... ok
test_is_isomorphic_2 (test_hierarchy.TestIsIsomorphic) ... ok
test_is_isomorphic_3 (test_hierarchy.TestIsIsomorphic) ... ok
test_is_isomorphic_4A (test_hierarchy.TestIsIsomorphic) ... ok
test_is_isomorphic_4B (test_hierarchy.TestIsIsomorphic) ... ok
test_is_isomorphic_4C (test_hierarchy.TestIsIsomorphic) ... ok
test_is_isomorphic_5A (test_hierarchy.TestIsIsomorphic) ... ok
test_is_isomorphic_5B (test_hierarchy.TestIsIsomorphic) ... ok
test_is_isomorphic_5C (test_hierarchy.TestIsIsomorphic) ... ok
test_is_isomorphic_6A (test_hierarchy.TestIsIsomorphic) ... ok
test_is_isomorphic_6B (test_hierarchy.TestIsIsomorphic) ... ok
test_is_isomorphic_6C (test_hierarchy.TestIsIsomorphic) ... ok
test_is_monotonic_1x4 (test_hierarchy.TestIsMonotonic) ... ok
test_is_monotonic_2x4_F (test_hierarchy.TestIsMonotonic) ... ok
test_is_monotonic_2x4_T (test_hierarchy.TestIsMonotonic) ... ok
test_is_monotonic_3x4_F1 (test_hierarchy.TestIsMonotonic) ... ok
test_is_monotonic_3x4_F2 (test_hierarchy.TestIsMonotonic) ... ok
test_is_monotonic_3x4_F3 (test_hierarchy.TestIsMonotonic) ... ok
test_is_monotonic_3x4_T (test_hierarchy.TestIsMonotonic) ... ok
test_is_monotonic_empty (test_hierarchy.TestIsMonotonic) ... ok
test_is_monotonic_iris_linkage (test_hierarchy.TestIsMonotonic) ... ok
test_is_monotonic_tdist_linkage1 (test_hierarchy.TestIsMonotonic) ... ok
test_is_monotonic_tdist_linkage2 (test_hierarchy.TestIsMonotonic) ... ok
test_is_valid_im_1x4 (test_hierarchy.TestIsValidInconsistent) ... ok
test_is_valid_im_2x4 (test_hierarchy.TestIsValidInconsistent) ... ok
test_is_valid_im_3_columns (test_hierarchy.TestIsValidInconsistent) ... ok
test_is_valid_im_4_and_up (test_hierarchy.TestIsValidInconsistent) ... ok
test_is_valid_im_4_and_up_neg_dist (test_hierarchy.TestIsValidInconsistent) ... ok
test_is_valid_im_4_and_up_neg_index_left (test_hierarchy.TestIsValidInconsistent) ... ok
test_is_valid_im_4_and_up_neg_index_right (test_hierarchy.TestIsValidInconsistent) ... ok
test_is_valid_im_5_columns (test_hierarchy.TestIsValidInconsistent) ... ok
test_is_valid_im_empty (test_hierarchy.TestIsValidInconsistent) ... ok
test_is_valid_im_int_type (test_hierarchy.TestIsValidInconsistent) ... ok
test_is_valid_linkage_1x4 (test_hierarchy.TestIsValidLinkage) ... ok
test_is_valid_linkage_2x4 (test_hierarchy.TestIsValidLinkage) ... ok
test_is_valid_linkage_3_columns (test_hierarchy.TestIsValidLinkage) ... ok
test_is_valid_linkage_4_and_up (test_hierarchy.TestIsValidLinkage) ... ok
test_is_valid_linkage_4_and_up_neg_counts (test_hierarchy.TestIsValidLinkage) ... ok
test_is_valid_linkage_4_and_up_neg_dist (test_hierarchy.TestIsValidLinkage) ... ok
test_is_valid_linkage_4_and_up_neg_index_left (test_hierarchy.TestIsValidLinkage) ... ok
test_is_valid_linkage_4_and_up_neg_index_right (test_hierarchy.TestIsValidLinkage) ... ok
test_is_valid_linkage_5_columns (test_hierarchy.TestIsValidLinkage) ... ok
test_is_valid_linkage_empty (test_hierarchy.TestIsValidLinkage) ... ok
test_is_valid_linkage_int_type (test_hierarchy.TestIsValidLinkage) ... ok
test_leaders_single (test_hierarchy.TestLeaders) ... ok
test_iris_subtree_pre_order (test_hierarchy.TestLeavesList) ... ok
test_leaves_list_1x4 (test_hierarchy.TestLeavesList) ... ok
test_leaves_list_2x4 (test_hierarchy.TestLeavesList) ... ok
test_leaves_list_iris_average (test_hierarchy.TestLeavesList) ... ok
test_leaves_list_iris_centroid (test_hierarchy.TestLeavesList) ... ok
test_leaves_list_iris_complete (test_hierarchy.TestLeavesList) ... ok
test_leaves_list_iris_median (test_hierarchy.TestLeavesList) ... ok
test_leaves_list_iris_single (test_hierarchy.TestLeavesList) ... ok
test_leaves_list_iris_ward (test_hierarchy.TestLeavesList) ... ok
test_linkage_average_tdist (test_hierarchy.TestLinkage) ... ok
test_linkage_centroid_q (test_hierarchy.TestLinkage) ... ok
test_linkage_complete_q (test_hierarchy.TestLinkage) ... ok
test_linkage_complete_tdist (test_hierarchy.TestLinkage) ... ok
test_linkage_empty_distance_matrix (test_hierarchy.TestLinkage) ... ok
test_linkage_single_q (test_hierarchy.TestLinkage) ... ok
test_linkage_single_tdist (test_hierarchy.TestLinkage) ... ok
test_linkage_weighted_q (test_hierarchy.TestLinkage) ... ok
test_linkage_weighted_tdist (test_hierarchy.TestLinkage) ... ok
test_linkage_with_unicode_method_name (test_hierarchy.TestLinkage) ... ok
test_maxdists_Q_linkage_centroid (test_hierarchy.TestMaxDists) ... ok
test_maxdists_Q_linkage_complete (test_hierarchy.TestMaxDists) ... ok
test_maxdists_Q_linkage_median (test_hierarchy.TestMaxDists) ... ok
test_maxdists_Q_linkage_single (test_hierarchy.TestMaxDists) ... ok
test_maxdists_Q_linkage_ward (test_hierarchy.TestMaxDists) ... ok
test_maxdists_empty_linkage (test_hierarchy.TestMaxDists) ... ok
test_maxdists_one_cluster_linkage (test_hierarchy.TestMaxDists) ... ok
test_maxinconsts_Q_linkage_centroid (test_hierarchy.TestMaxInconsts) ... ok
test_maxinconsts_Q_linkage_complete (test_hierarchy.TestMaxInconsts) ... ok
test_maxinconsts_Q_linkage_median (test_hierarchy.TestMaxInconsts) ... ok
test_maxinconsts_Q_linkage_single (test_hierarchy.TestMaxInconsts) ... ok
test_maxinconsts_Q_linkage_ward (test_hierarchy.TestMaxInconsts) ... ok
test_maxinconsts_difrow_linkage (test_hierarchy.TestMaxInconsts) ... ok
test_maxinconsts_empty_linkage (test_hierarchy.TestMaxInconsts) ... ok
test_maxinconsts_one_cluster_linkage (test_hierarchy.TestMaxInconsts) ... ok
test_maxRstat_0_Q_linkage_centroid (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_0_Q_linkage_complete (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_0_Q_linkage_median (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_0_Q_linkage_single (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_0_Q_linkage_ward (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_0_difrow_linkage (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_0_empty_linkage (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_0_one_cluster_linkage (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_1_Q_linkage_centroid (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_1_Q_linkage_complete (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_1_Q_linkage_median (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_1_Q_linkage_single (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_1_Q_linkage_ward (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_1_difrow_linkage (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_1_empty_linkage (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_1_one_cluster_linkage (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_2_Q_linkage_centroid (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_2_Q_linkage_complete (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_2_Q_linkage_median (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_2_Q_linkage_single (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_2_Q_linkage_ward (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_2_difrow_linkage (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_2_empty_linkage (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_2_one_cluster_linkage (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_3_Q_linkage_centroid (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_3_Q_linkage_complete (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_3_Q_linkage_median (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_3_Q_linkage_single (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_3_Q_linkage_ward (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_3_difrow_linkage (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_3_empty_linkage (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_3_one_cluster_linkage (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_float_index (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_neg_index (test_hierarchy.TestMaxRStat) ... ok
test_maxRstat_oob_pos_index (test_hierarchy.TestMaxRStat) ... ok
test_num_obs_linkage_1x4 (test_hierarchy.TestNumObsLinkage) ... ok
test_num_obs_linkage_2x4 (test_hierarchy.TestNumObsLinkage) ... ok
test_num_obs_linkage_4_and_up (test_hierarchy.TestNumObsLinkage) ... ok
test_num_obs_linkage_empty (test_hierarchy.TestNumObsLinkage) ... ok
test_from_mlab_linkage_multiple_rows (test_hierarchy.TestToMLabLinkage) ... ok
test_to_mlab_linkage_empty (test_hierarchy.TestToMLabLinkage) ... ok
test_to_mlab_linkage_single_row (test_hierarchy.TestToMLabLinkage) ... ok
test_hierarchy.load_testing_files ... ok
test_hierarchy.test_euclidean_linkage_value_error ... ok
Ticket #505. ... ok
Testing that kmeans2 init methods work. ... ok
Testing simple call to kmeans2 with rank 1 data. ... ok
Testing simple call to kmeans2 with rank 1 data. ... ok
Testing simple call to kmeans2 and its results. ... ok
Regression test for #546: fail when k arg is 0. ... ok
test_kmeans_lost_cluster (test_vq.TestKMean) ... ok
test_kmeans_simple (test_vq.TestKMean) ... ok
test_large_features (test_vq.TestKMean) ... ok
test__vq_sametype (test_vq.TestVq) ... ok
test_py_vq (test_vq.TestVq) ... ok
test_py_vq2 (test_vq.TestVq) ... ok
test_vq (test_vq.TestVq) ... ok
Test special rank 1 vq algo, python implementation. ... ok
test_codata.test_find ... ok
test_codata.test_basic_table_parse ... ok
test_codata.test_basic_lookup ... ok
test_codata.test_find_all ... ok
test_codata.test_find_single ... ok
test_codata.test_2002_vs_2006 ... ok
Check that updating stored values with exact ones worked. ... ok
test_constants.test_fahrenheit_to_celcius ... ok
test_constants.test_celcius_to_kelvin ... ok
test_constants.test_kelvin_to_celcius ... ok
test_constants.test_fahrenheit_to_kelvin ... ok
test_constants.test_kelvin_to_fahrenheit ... ok
test_constants.test_celcius_to_fahrenheit ... ok
test_constants.test_lambda_to_nu ... ok
test_constants.test_nu_to_lambda ... ok
test_definition (test_basic.TestDoubleFFT) ... ok
test_djbfft (test_basic.TestDoubleFFT) ... Segmentation fault
# This file provides configuration information about non-Python dependencies for
# numpy.distutils-using packages. Create a file like this called "site.cfg" next
# to your package's setup.py file and fill in the appropriate sections. Not all
# packages will use all sections so you should leave out sections that your
# package does not use.
# To assist automatic installation like easy_install, the user's home directory
# will also be checked for the file ~/.numpy-site.cfg .
# The format of the file is that of the standard library's ConfigParser module.
#
# http://www.python.org/doc/current/lib/module-ConfigParser.html
#
# Each section defines settings that apply to one particular dependency. Some of
# the settings are general and apply to nearly any section and are defined here.
# Settings specific to a particular section will be defined near their section.
#
# libraries
# Comma-separated list of library names to add to compile the extension
# with. Note that these should be just the names, not the filenames. For
# example, the file "libfoo.so" would become simply "foo".
# libraries = lapack,f77blas,cblas,atlas
#
# library_dirs
# List of directories to add to the library search path when compiling
# extensions with this dependency. Use the character given by os.pathsep
# to separate the items in the list. Note that this character is known to
# vary on some unix-like systems; if a colon does not work, try a comma.
# This also applies to include_dirs and src_dirs (see below).
# On UN*X-type systems (OS X, most BSD and Linux systems):
# library_dirs = /usr/lib:/usr/local/lib
# On Windows:
# library_dirs = c:\mingw\lib,c:\atlas\lib
# On some BSD and Linux systems:
# library_dirs = /usr/lib,/usr/local/lib
#
# include_dirs
# List of directories to add to the header file earch path.
# include_dirs = /usr/include:/usr/local/include
#
# src_dirs
# List of directories that contain extracted source code for the
# dependency. For some dependencies, numpy.distutils will be able to build
# them from source if binaries cannot be found. The FORTRAN BLAS and
# LAPACK libraries are one example. However, most dependencies are more
# complicated and require actual installation that you need to do
# yourself.
# src_dirs = /home/rkern/src/BLAS_SRC:/home/rkern/src/LAPACK_SRC
#
# search_static_first
# Boolean (one of (0, false, no, off) for False or (1, true, yes, on) for
# True) to tell numpy.distutils to prefer static libraries (.a) over
# shared libraries (.so). It is turned off by default.
# search_static_first = false
# Defaults
# ========
# The settings given here will apply to all other sections if not overridden.
# This is a good place to add general library and include directories like
# /usr/local/{lib,include}
#
[DEFAULT]
#library_dirs = /opt/intel/composer_xe_2013.1.117/mkl/lib/intel64
#include_dirs = /opt/intel/composer_xe_2013.1.117/mkl/include
library_dirs = /opt/intel/composer_xe_2013.1.117/compiler/lib/intel64:/opt/intel/composer_xe_2013.1.117/mkl/lib/intel64
include_dirs = /opt/intel/composer_xe_2013.1.117/compiler/include:/opt/intel/composer_xe_2013.1.117/mkl/include
#library_dirs = /usr/local/lib
#include_dirs = /usr/local/include
# Atlas
# -----
# Atlas is an open source optimized implementation of the BLAS and Lapack
# routines. Numpy will try to build against Atlas by default when available in
# the system library dirs. To build numpy against a custom installation of
# Atlas you can add an explicit section such as the following. Here we assume
# that Atlas was configured with ``prefix=/opt/atlas``.
#
# [atlas]
# library_dirs = /opt/atlas/lib
# include_dirs = /opt/atlas/include
# OpenBLAS
# --------
# OpenBLAS is another open source optimized implementation of BLAS and Lapack
# and can be seen as an alternative to Atlas. To build numpy against OpenBLAS
# instead of Atlas, use this section instead of the above, adjusting as needed
# for your configuration (in the following example we installed OpenBLAS with
# ``make install PREFIX=/opt/OpenBLAS``.
#
# **Warning**: OpenBLAS, by default, is built in multithreaded mode. Due to the
# way Python's multiprocessing is implemented, a multithreaded OpenBLAS can
# cause programs using both to hang as soon as a worker process is forked on
# POSIX systems (Linux, Mac). Python 3.4 will introduce a new feature in
# multiprocessing, called the "forkserver", which solves this problem. For
# older versions, either compile OpenBLAS with multithreading turned off or
# use Python threads instead of multiprocessing.
# (This problem does not exist with multithreaded ATLAS.)
#
# http://docs.python.org/3.4/library/multiprocessing.html#contexts-and-start-methods
#
# [openblas]
# libraries = openblas
# library_dirs = /opt/OpenBLAS/lib
# include_dirs = /opt/OpenBLAS/include
# MKL
#----
# MKL is Intel's very optimized yet proprietary implementation of BLAS and
# Lapack.
# For recent (9.0.21, for example) mkl, you need to change the names of the
# lapack library. Assuming you installed the mkl in /opt, for a 32 bits cpu:
[mkl]
#library_dirs = /opt/intel/composer_xe_2013.1.117/mkl/lib/intel64
#include_dirs = /opt/intel/composer_xe_2013.1.117/mkl/include
library_dirs = /opt/intel/composer_xe_2013.1.117/compiler/lib/intel64:/opt/intel/composer_xe_2013.1.117/mkl/lib/intel64
include_dirs = /opt/intel/composer_xe_2013.1.117/compiler/include:/opt/intel/composer_xe_2013.1.117/mkl/include
#mkl_libs = mkl_intel_lp64,mkl_intel_thread,mkl_core
mkl_libs = mkl_rt
#mkl_libs = mkl_def, mkl_intel_lp64, mkl_intel_thread, mkl_core, iomp5, guide, mkl
#lapack_libs =
lapack_libs = mkl_lapack95_lp64
libraries = iomp5
#library_dirs = /opt/intel/composer_xe_2013.1.117/compiler/lib/intel64,/opt/intel/composer_xe_2013.1.117/mkl/lib/intel64
#include_dirs = /opt/intel/composer_xe_2013.1.117/mkl/include
#lapack_libs =
#
# For 10.*, on 32 bits machines:
# [mkl]
# library_dirs = /opt/intel/mkl/10.0.1.014/lib/32/
# lapack_libs = mkl_lapack
# mkl_libs = mkl, guide
# UMFPACK
# -------
# The UMFPACK library is used in scikits.umfpack to factor large sparse matrices.
# It, in turn, depends on the AMD library for reordering the matrices for
# better performance. Note that the AMD library has nothing to do with AMD
# (Advanced Micro Devices), the CPU company.
#
# UMFPACK is not needed for numpy or scipy.
#
# http://www.cise.ufl.edu/research/sparse/umfpack/
# http://www.cise.ufl.edu/research/sparse/amd/
# http://scikits.appspot.com/umfpack
#
#[amd]
#amd_libs = amd
#
#[umfpack]
#umfpack_libs = umfpack
# FFT libraries
# -------------
# There are two FFT libraries that we can configure here: FFTW (2 and 3) and djbfft.
# Note that these libraries are not needed for numpy or scipy.
#
# http://fftw.org/
# http://cr.yp.to/djbfft.html
#
# Given only this section, numpy.distutils will try to figure out which version
# of FFTW you are using.
#[fftw]
#libraries = fftw3
#
# For djbfft, numpy.distutils will look for either djbfft.a or libdjbfft.a .
#[djbfft]
#include_dirs = /usr/local/djbfft/include
#library_dirs = /usr/local/djbfft/lib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment