numpy 1.9.2__zip → 1.10.0__zip
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- numpy-1.10.0.post2/INSTALL.txt +200 -0
- numpy-1.10.0.post2/LICENSE.txt +30 -0
- numpy-1.10.0.post2/MANIFEST.in +31 -0
- numpy-1.10.0.post2/PKG-INFO +47 -0
- numpy-1.10.0.post2/cnew.txt +117 -0
- numpy-1.10.0.post2/cold.txt +44 -0
- numpy-1.10.0.post2/committers.txt +160 -0
- numpy-1.10.0.post2/cpre.txt +283 -0
- numpy-1.10.0.post2/crel.txt +161 -0
- numpy-1.10.0.post2/doc/release/1.10.0-notes.rst +439 -0
- numpy-1.10.0.post2/doc/scipy-sphinx-theme/.git +1 -0
- numpy-1.10.0.post2/doc/source/conf.py +331 -0
- numpy-1.10.0.post2/doc/source/dev/development_environment.rst +211 -0
- numpy-1.10.0.post2/doc/source/dev/gitwash/development_workflow.rst +534 -0
- numpy-1.10.0.post2/doc/source/dev/gitwash/git_links.inc +95 -0
- numpy-1.10.0.post2/doc/source/dev/gitwash/index.rst +14 -0
- numpy-1.10.0.post2/doc/source/dev/index.rst +11 -0
- numpy-1.10.0.post2/doc/source/reference/arrays.classes.rst +490 -0
- numpy-1.10.0.post2/doc/source/reference/arrays.dtypes.rst +536 -0
- numpy-1.10.0.post2/doc/source/reference/arrays.indexing.rst +549 -0
- numpy-1.10.0.post2/doc/source/reference/arrays.interface.rst +337 -0
- numpy-1.10.0.post2/doc/source/reference/arrays.ndarray.rst +622 -0
- numpy-1.10.0.post2/doc/source/reference/arrays.scalars.rst +291 -0
- numpy-1.10.0.post2/doc/source/reference/c-api.array.rst +3393 -0
- numpy-1.10.0.post2/doc/source/reference/c-api.config.rst +103 -0
- numpy-1.10.0.post2/doc/source/reference/c-api.coremath.rst +420 -0
- numpy-1.10.0.post2/doc/source/reference/c-api.dtype.rst +376 -0
- numpy-1.10.0.post2/doc/source/reference/c-api.generalized-ufuncs.rst +191 -0
- numpy-1.10.0.post2/doc/source/reference/c-api.iterator.rst +1300 -0
- numpy-1.10.0.post2/doc/source/reference/c-api.types-and-structures.rst +1240 -0
- numpy-1.10.0.post2/doc/source/reference/c-api.ufunc.rst +413 -0
- numpy-1.10.0.post2/doc/source/reference/index.rst +43 -0
- numpy-1.10.0.post2/doc/source/reference/internals.code-explanations.rst +615 -0
- numpy-1.10.0.post2/doc/source/reference/routines.array-manipulation.rst +115 -0
- numpy-1.10.0.post2/doc/source/reference/routines.io.rst +78 -0
- numpy-1.10.0.post2/doc/source/reference/routines.linalg.rst +91 -0
- numpy-1.10.0.post2/doc/source/reference/routines.ma.rst +407 -0
- numpy-1.10.0.post2/doc/source/reference/routines.sort.rst +41 -0
- numpy-1.10.0.post2/doc/source/reference/routines.statistics.rst +57 -0
- numpy-1.10.0.post2/doc/source/reference/swig.interface-file.rst +1066 -0
- numpy-1.10.0.post2/doc/source/reference/swig.testing.rst +167 -0
- numpy-1.10.0.post2/doc/source/reference/ufuncs.rst +666 -0
- numpy-1.10.0.post2/doc/source/release.rst +20 -0
- numpy-1.10.0.post2/doc/source/user/basics.io.genfromtxt.rst +531 -0
- numpy-1.10.0.post2/doc/source/user/basics.rec.rst +7 -0
- numpy-1.10.0.post2/doc/source/user/c-info.beyond-basics.rst +560 -0
- numpy-1.10.0.post2/doc/source/user/c-info.how-to-extend.rst +642 -0
- numpy-1.10.0.post2/doc/source/user/c-info.python-as-glue.rst +1177 -0
- numpy-1.10.0.post2/doc/source/user/c-info.ufunc-tutorial.rst +1211 -0
- numpy-1.10.0.post2/doc/source/user/install.rst +194 -0
- numpy-1.10.0.post2/doc/sphinxext/.git +1 -0
- numpy-1.10.0.post2/numpy/__init__.py +227 -0
- numpy-1.10.0.post2/numpy/_build_utils/README +8 -0
- numpy-1.10.0.post2/numpy/_build_utils/apple_accelerate.py +21 -0
- numpy-1.10.0.post2/numpy/_build_utils/common.py +138 -0
- numpy-1.10.0.post2/numpy/_build_utils/src/apple_sgemv_fix.c +227 -0
- numpy-1.10.0.post2/numpy/_build_utils/waf.py +531 -0
- numpy-1.10.0.post2/numpy/_import_tools.py +353 -0
- numpy-1.10.0.post2/numpy/add_newdocs.py +7611 -0
- numpy-1.10.0.post2/numpy/compat/_inspect.py +194 -0
- numpy-1.10.0.post2/numpy/compat/py3k.py +88 -0
- numpy-1.10.0.post2/numpy/compat/setup.py +12 -0
- numpy-1.10.0.post2/numpy/core/__init__.py +89 -0
- numpy-1.10.0.post2/numpy/core/_internal.py +761 -0
- numpy-1.10.0.post2/numpy/core/_methods.py +133 -0
- numpy-1.10.0.post2/numpy/core/arrayprint.py +760 -0
- numpy-1.10.0.post2/numpy/core/code_generators/cversions.txt +34 -0
- numpy-1.10.0.post2/numpy/core/code_generators/generate_ufunc_api.py +219 -0
- numpy-1.10.0.post2/numpy/core/code_generators/generate_umath.py +1017 -0
- numpy-1.10.0.post2/numpy/core/code_generators/numpy_api.py +415 -0
- numpy-1.10.0.post2/numpy/core/code_generators/ufunc_docstrings.py +3442 -0
- numpy-1.10.0.post2/numpy/core/defchararray.py +2689 -0
- numpy-1.10.0.post2/numpy/core/fromnumeric.py +3089 -0
- numpy-1.10.0.post2/numpy/core/function_base.py +203 -0
- numpy-1.10.0.post2/numpy/core/getlimits.py +308 -0
- numpy-1.10.0.post2/numpy/core/include/numpy/ndarrayobject.h +246 -0
- numpy-1.10.0.post2/numpy/core/include/numpy/ndarraytypes.h +1797 -0
- numpy-1.10.0.post2/numpy/core/include/numpy/npy_3kcompat.h +448 -0
- numpy-1.10.0.post2/numpy/core/include/numpy/npy_common.h +1051 -0
- numpy-1.10.0.post2/numpy/core/include/numpy/npy_cpu.h +92 -0
- numpy-1.10.0.post2/numpy/core/include/numpy/npy_endian.h +61 -0
- numpy-1.10.0.post2/numpy/core/include/numpy/npy_math.h +525 -0
- numpy-1.10.0.post2/numpy/core/include/numpy/numpyconfig.h +36 -0
- numpy-1.10.0.post2/numpy/core/machar.py +342 -0
- numpy-1.10.0.post2/numpy/core/memmap.py +311 -0
- numpy-1.10.0.post2/numpy/core/numeric.py +2893 -0
- numpy-1.10.0.post2/numpy/core/numerictypes.py +1036 -0
- numpy-1.10.0.post2/numpy/core/records.py +846 -0
- numpy-1.10.0.post2/numpy/core/setup.py +983 -0
- numpy-1.10.0.post2/numpy/core/setup_common.py +352 -0
- numpy-1.10.0.post2/numpy/core/shape_base.py +350 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/alloc.c +244 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/arrayobject.c +1858 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/arraytypes.c.src +4738 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/arraytypes.h +37 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/buffer.c +981 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/calculation.c +1224 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/cblasfuncs.c +812 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/cblasfuncs.h +10 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/common.c +911 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/common.h +250 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/compiled_base.c +1664 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/compiled_base.h +24 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/conversion_utils.c +1217 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/convert.c +590 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/convert_datatype.c +2155 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/ctors.c +3838 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/datetime.c +3821 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/datetime_busday.c +1322 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/datetime_busdaycal.c +552 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/datetime_strings.c +1772 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/descriptor.c +3719 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/dtype_transfer.c +4239 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/einsum.c.src +3005 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/getset.c +986 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/hashdescr.c +318 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/item_selection.c +2413 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/iterators.c +2192 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/lowlevel_strided_loops.c.src +1769 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/mapping.c +3380 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/mapping.h +77 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/methods.c +2514 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/multiarray_tests.c.src +1035 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/multiarraymodule.c +4628 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/multiarraymodule.h +15 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/nditer_api.c +2809 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/nditer_constr.c +3160 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/nditer_pywrap.c +2499 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/number.c +1106 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/number.h +77 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/numpymemoryview.c +308 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/numpyos.c +683 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/scalarapi.c +870 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/scalartypes.c.src +4343 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/scalartypes.h +55 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/shape.c +1131 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/ucsnarrow.c +174 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/vdot.c +180 -0
- numpy-1.10.0.post2/numpy/core/src/multiarray/vdot.h +18 -0
- numpy-1.10.0.post2/numpy/core/src/npymath/ieee754.c.src +808 -0
- numpy-1.10.0.post2/numpy/core/src/npymath/npy_math.c.src +597 -0
- numpy-1.10.0.post2/numpy/core/src/npymath/npy_math_complex.c.src +1788 -0
- numpy-1.10.0.post2/numpy/core/src/npymath/npy_math_private.h +544 -0
- numpy-1.10.0.post2/numpy/core/src/npysort/heapsort.c.src +402 -0
- numpy-1.10.0.post2/numpy/core/src/npysort/mergesort.c.src +488 -0
- numpy-1.10.0.post2/numpy/core/src/npysort/npysort_common.h +360 -0
- numpy-1.10.0.post2/numpy/core/src/npysort/quicksort.c.src +523 -0
- numpy-1.10.0.post2/numpy/core/src/npysort/selection.c.src +426 -0
- numpy-1.10.0.post2/numpy/core/src/private/npy_cblas.h +584 -0
- numpy-1.10.0.post2/numpy/core/src/private/npy_config.h +101 -0
- numpy-1.10.0.post2/numpy/core/src/private/npy_import.h +32 -0
- numpy-1.10.0.post2/numpy/core/src/private/npy_partition.h.src +122 -0
- numpy-1.10.0.post2/numpy/core/src/private/npy_sort.h +196 -0
- numpy-1.10.0.post2/numpy/core/src/private/templ_common.h.src +43 -0
- numpy-1.10.0.post2/numpy/core/src/private/ufunc_override.h +397 -0
- numpy-1.10.0.post2/numpy/core/src/umath/funcs.inc.src +356 -0
- numpy-1.10.0.post2/numpy/core/src/umath/loops.c.src +2675 -0
- numpy-1.10.0.post2/numpy/core/src/umath/loops.h.src +497 -0
- numpy-1.10.0.post2/numpy/core/src/umath/operand_flag_tests.c.src +105 -0
- numpy-1.10.0.post2/numpy/core/src/umath/scalarmath.c.src +1738 -0
- numpy-1.10.0.post2/numpy/core/src/umath/simd.inc.src +903 -0
- numpy-1.10.0.post2/numpy/core/src/umath/test_rational.c.src +1404 -0
- numpy-1.10.0.post2/numpy/core/src/umath/ufunc_object.c +5703 -0
- numpy-1.10.0.post2/numpy/core/src/umath/ufunc_type_resolution.c +2159 -0
- numpy-1.10.0.post2/numpy/core/src/umath/umath_tests.c.src +392 -0
- numpy-1.10.0.post2/numpy/core/src/umath/umathmodule.c +443 -0
- numpy-1.10.0.post2/numpy/core/tests/test_abc.py +47 -0
- numpy-1.10.0.post2/numpy/core/tests/test_api.py +515 -0
- numpy-1.10.0.post2/numpy/core/tests/test_arrayprint.py +171 -0
- numpy-1.10.0.post2/numpy/core/tests/test_datetime.py +1820 -0
- numpy-1.10.0.post2/numpy/core/tests/test_defchararray.py +703 -0
- numpy-1.10.0.post2/numpy/core/tests/test_deprecations.py +619 -0
- numpy-1.10.0.post2/numpy/core/tests/test_dtype.py +578 -0
- numpy-1.10.0.post2/numpy/core/tests/test_einsum.py +627 -0
- numpy-1.10.0.post2/numpy/core/tests/test_errstate.py +52 -0
- numpy-1.10.0.post2/numpy/core/tests/test_function_base.py +142 -0
- numpy-1.10.0.post2/numpy/core/tests/test_getlimits.py +77 -0
- numpy-1.10.0.post2/numpy/core/tests/test_half.py +436 -0
- numpy-1.10.0.post2/numpy/core/tests/test_indexerrors.py +126 -0
- numpy-1.10.0.post2/numpy/core/tests/test_indexing.py +1047 -0
- numpy-1.10.0.post2/numpy/core/tests/test_item_selection.py +73 -0
- numpy-1.10.0.post2/numpy/core/tests/test_machar.py +29 -0
- numpy-1.10.0.post2/numpy/core/tests/test_memmap.py +130 -0
- numpy-1.10.0.post2/numpy/core/tests/test_multiarray.py +5924 -0
- numpy-1.10.0.post2/numpy/core/tests/test_multiarray_assignment.py +84 -0
- numpy-1.10.0.post2/numpy/core/tests/test_nditer.py +2638 -0
- numpy-1.10.0.post2/numpy/core/tests/test_numeric.py +2204 -0
- numpy-1.10.0.post2/numpy/core/tests/test_numerictypes.py +382 -0
- numpy-1.10.0.post2/numpy/core/tests/test_print.py +248 -0
- numpy-1.10.0.post2/numpy/core/tests/test_records.py +299 -0
- numpy-1.10.0.post2/numpy/core/tests/test_regression.py +2177 -0
- numpy-1.10.0.post2/numpy/core/tests/test_scalarinherit.py +41 -0
- numpy-1.10.0.post2/numpy/core/tests/test_scalarmath.py +316 -0
- numpy-1.10.0.post2/numpy/core/tests/test_shape_base.py +319 -0
- numpy-1.10.0.post2/numpy/core/tests/test_ufunc.py +1227 -0
- numpy-1.10.0.post2/numpy/core/tests/test_umath.py +1933 -0
- numpy-1.10.0.post2/numpy/core/tests/test_umath_complex.py +538 -0
- numpy-1.10.0.post2/numpy/core/tests/test_unicode.py +360 -0
- numpy-1.10.0.post2/numpy/distutils/__init__.py +23 -0
- numpy-1.10.0.post2/numpy/distutils/ccompiler.py +690 -0
- numpy-1.10.0.post2/numpy/distutils/command/autodist.py +94 -0
- numpy-1.10.0.post2/numpy/distutils/command/build.py +47 -0
- numpy-1.10.0.post2/numpy/distutils/command/build_clib.py +295 -0
- numpy-1.10.0.post2/numpy/distutils/command/build_ext.py +522 -0
- numpy-1.10.0.post2/numpy/distutils/command/config.py +437 -0
- numpy-1.10.0.post2/numpy/distutils/exec_command.py +651 -0
- numpy-1.10.0.post2/numpy/distutils/fcompiler/compaq.py +128 -0
- numpy-1.10.0.post2/numpy/distutils/fcompiler/gnu.py +403 -0
- numpy-1.10.0.post2/numpy/distutils/fcompiler/intel.py +217 -0
- numpy-1.10.0.post2/numpy/distutils/fcompiler/pg.py +63 -0
- numpy-1.10.0.post2/numpy/distutils/fcompiler/sun.py +55 -0
- numpy-1.10.0.post2/numpy/distutils/intelccompiler.py +95 -0
- numpy-1.10.0.post2/numpy/distutils/lib2def.py +116 -0
- numpy-1.10.0.post2/numpy/distutils/mingw32ccompiler.py +599 -0
- numpy-1.10.0.post2/numpy/distutils/misc_util.py +2306 -0
- numpy-1.10.0.post2/numpy/distutils/msvc9compiler.py +23 -0
- numpy-1.10.0.post2/numpy/distutils/msvccompiler.py +17 -0
- numpy-1.10.0.post2/numpy/distutils/npy_pkg_config.py +451 -0
- numpy-1.10.0.post2/numpy/distutils/system_info.py +2397 -0
- numpy-1.10.0.post2/numpy/distutils/tests/f2py_ext/tests/test_fib2.py +12 -0
- numpy-1.10.0.post2/numpy/distutils/tests/f2py_f90_ext/tests/test_foo.py +11 -0
- numpy-1.10.0.post2/numpy/distutils/tests/gen_ext/tests/test_fib3.py +11 -0
- numpy-1.10.0.post2/numpy/distutils/tests/pyrex_ext/tests/test_primes.py +13 -0
- numpy-1.10.0.post2/numpy/distutils/tests/swig_ext/__init__.py +1 -0
- numpy-1.10.0.post2/numpy/distutils/tests/swig_ext/tests/test_example.py +17 -0
- numpy-1.10.0.post2/numpy/distutils/tests/swig_ext/tests/test_example2.py +15 -0
- numpy-1.10.0.post2/numpy/distutils/tests/test_fcompiler_gnu.py +60 -0
- numpy-1.10.0.post2/numpy/distutils/tests/test_fcompiler_intel.py +36 -0
- numpy-1.10.0.post2/numpy/distutils/tests/test_misc_util.py +79 -0
- numpy-1.10.0.post2/numpy/distutils/tests/test_npy_pkg_config.py +102 -0
- numpy-1.10.0.post2/numpy/distutils/tests/test_system_info.py +209 -0
- numpy-1.10.0.post2/numpy/distutils/unixccompiler.py +125 -0
- numpy-1.10.0.post2/numpy/doc/byteswapping.py +156 -0
- numpy-1.10.0.post2/numpy/doc/creation.py +144 -0
- numpy-1.10.0.post2/numpy/doc/glossary.py +423 -0
- numpy-1.10.0.post2/numpy/doc/indexing.py +439 -0
- numpy-1.10.0.post2/numpy/doc/structured_arrays.py +290 -0
- numpy-1.10.0.post2/numpy/f2py/__init__.py +49 -0
- numpy-1.10.0.post2/numpy/f2py/__main__.py +25 -0
- numpy-1.10.0.post2/numpy/f2py/auxfuncs.py +858 -0
- numpy-1.10.0.post2/numpy/f2py/capi_maps.py +851 -0
- numpy-1.10.0.post2/numpy/f2py/cb_rules.py +554 -0
- numpy-1.10.0.post2/numpy/f2py/cfuncs.py +1261 -0
- numpy-1.10.0.post2/numpy/f2py/common_rules.py +150 -0
- numpy-1.10.0.post2/numpy/f2py/crackfortran.py +3314 -0
- numpy-1.10.0.post2/numpy/f2py/diagnose.py +156 -0
- numpy-1.10.0.post2/numpy/f2py/f2py2e.py +656 -0
- numpy-1.10.0.post2/numpy/f2py/f2py_testing.py +48 -0
- numpy-1.10.0.post2/numpy/f2py/f90mod_rules.py +272 -0
- numpy-1.10.0.post2/numpy/f2py/func2subr.py +299 -0
- numpy-1.10.0.post2/numpy/f2py/rules.py +1475 -0
- numpy-1.10.0.post2/numpy/f2py/setup.py +117 -0
- numpy-1.10.0.post2/numpy/f2py/src/fortranobject.c +1037 -0
- numpy-1.10.0.post2/numpy/f2py/src/fortranobject.h +162 -0
- numpy-1.10.0.post2/numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +223 -0
- numpy-1.10.0.post2/numpy/f2py/tests/test_array_from_pyobj.py +593 -0
- numpy-1.10.0.post2/numpy/f2py/tests/test_assumed_shape.py +35 -0
- numpy-1.10.0.post2/numpy/f2py/tests/test_callback.py +136 -0
- numpy-1.10.0.post2/numpy/f2py/tests/test_kind.py +36 -0
- numpy-1.10.0.post2/numpy/f2py/tests/test_mixed.py +40 -0
- numpy-1.10.0.post2/numpy/f2py/tests/test_regression.py +34 -0
- numpy-1.10.0.post2/numpy/f2py/tests/test_return_character.py +148 -0
- numpy-1.10.0.post2/numpy/f2py/tests/test_return_complex.py +170 -0
- numpy-1.10.0.post2/numpy/f2py/tests/test_return_integer.py +180 -0
- numpy-1.10.0.post2/numpy/f2py/tests/test_return_logical.py +189 -0
- numpy-1.10.0.post2/numpy/f2py/tests/test_return_real.py +206 -0
- numpy-1.10.0.post2/numpy/f2py/tests/test_size.py +44 -0
- numpy-1.10.0.post2/numpy/f2py/tests/util.py +367 -0
- numpy-1.10.0.post2/numpy/f2py/use_rules.py +115 -0
- numpy-1.10.0.post2/numpy/fft/fftpack.c +1501 -0
- numpy-1.10.0.post2/numpy/fft/fftpack.h +28 -0
- numpy-1.10.0.post2/numpy/fft/fftpack.py +1241 -0
- numpy-1.10.0.post2/numpy/fft/fftpack_litemodule.c +363 -0
- numpy-1.10.0.post2/numpy/fft/info.py +187 -0
- numpy-1.10.0.post2/numpy/fft/setup.py +19 -0
- numpy-1.10.0.post2/numpy/fft/tests/test_fftpack.py +166 -0
- numpy-1.10.0.post2/numpy/fft/tests/test_helper.py +78 -0
- numpy-1.10.0.post2/numpy/lib/_iotools.py +917 -0
- numpy-1.10.0.post2/numpy/lib/arraypad.py +1497 -0
- numpy-1.10.0.post2/numpy/lib/arraysetops.py +480 -0
- numpy-1.10.0.post2/numpy/lib/arrayterator.py +226 -0
- numpy-1.10.0.post2/numpy/lib/financial.py +737 -0
- numpy-1.10.0.post2/numpy/lib/format.py +814 -0
- numpy-1.10.0.post2/numpy/lib/function_base.py +4150 -0
- numpy-1.10.0.post2/numpy/lib/index_tricks.py +874 -0
- numpy-1.10.0.post2/numpy/lib/info.py +152 -0
- numpy-1.10.0.post2/numpy/lib/nanfunctions.py +1237 -0
- numpy-1.10.0.post2/numpy/lib/npyio.py +1992 -0
- numpy-1.10.0.post2/numpy/lib/polynomial.py +1277 -0
- numpy-1.10.0.post2/numpy/lib/recfunctions.py +1003 -0
- numpy-1.10.0.post2/numpy/lib/setup.py +12 -0
- numpy-1.10.0.post2/numpy/lib/shape_base.py +872 -0
- numpy-1.10.0.post2/numpy/lib/stride_tricks.py +200 -0
- numpy-1.10.0.post2/numpy/lib/tests/data/py2-objarr.npy +0 -0
- numpy-1.10.0.post2/numpy/lib/tests/data/py2-objarr.npz +0 -0
- numpy-1.10.0.post2/numpy/lib/tests/data/py3-objarr.npy +0 -0
- numpy-1.10.0.post2/numpy/lib/tests/data/py3-objarr.npz +0 -0
- numpy-1.10.0.post2/numpy/lib/tests/test__iotools.py +348 -0
- numpy-1.10.0.post2/numpy/lib/tests/test__version.py +70 -0
- numpy-1.10.0.post2/numpy/lib/tests/test_arraypad.py +1047 -0
- numpy-1.10.0.post2/numpy/lib/tests/test_arraysetops.py +309 -0
- numpy-1.10.0.post2/numpy/lib/tests/test_financial.py +163 -0
- numpy-1.10.0.post2/numpy/lib/tests/test_format.py +841 -0
- numpy-1.10.0.post2/numpy/lib/tests/test_function_base.py +2555 -0
- numpy-1.10.0.post2/numpy/lib/tests/test_index_tricks.py +326 -0
- numpy-1.10.0.post2/numpy/lib/tests/test_io.py +1916 -0
- numpy-1.10.0.post2/numpy/lib/tests/test_nanfunctions.py +707 -0
- numpy-1.10.0.post2/numpy/lib/tests/test_packbits.py +26 -0
- numpy-1.10.0.post2/numpy/lib/tests/test_polynomial.py +188 -0
- numpy-1.10.0.post2/numpy/lib/tests/test_recfunctions.py +734 -0
- numpy-1.10.0.post2/numpy/lib/tests/test_shape_base.py +386 -0
- numpy-1.10.0.post2/numpy/lib/tests/test_stride_tricks.py +405 -0
- numpy-1.10.0.post2/numpy/lib/tests/test_twodim_base.py +535 -0
- numpy-1.10.0.post2/numpy/lib/tests/test_type_check.py +332 -0
- numpy-1.10.0.post2/numpy/lib/twodim_base.py +1007 -0
- numpy-1.10.0.post2/numpy/lib/type_check.py +596 -0
- numpy-1.10.0.post2/numpy/lib/utils.py +1122 -0
- numpy-1.10.0.post2/numpy/linalg/lapack_lite/python_xerbla.c +46 -0
- numpy-1.10.0.post2/numpy/linalg/lapack_litemodule.c +358 -0
- numpy-1.10.0.post2/numpy/linalg/linalg.py +2406 -0
- numpy-1.10.0.post2/numpy/linalg/tests/test_build.py +59 -0
- numpy-1.10.0.post2/numpy/linalg/tests/test_linalg.py +1351 -0
- numpy-1.10.0.post2/numpy/linalg/tests/test_regression.py +95 -0
- numpy-1.10.0.post2/numpy/linalg/umath_linalg.c.src +3236 -0
- numpy-1.10.0.post2/numpy/ma/__init__.py +56 -0
- numpy-1.10.0.post2/numpy/ma/bench.py +131 -0
- numpy-1.10.0.post2/numpy/ma/core.py +7608 -0
- numpy-1.10.0.post2/numpy/ma/extras.py +1953 -0
- numpy-1.10.0.post2/numpy/ma/mrecords.py +796 -0
- numpy-1.10.0.post2/numpy/ma/setup.py +13 -0
- numpy-1.10.0.post2/numpy/ma/tests/test_core.py +4100 -0
- numpy-1.10.0.post2/numpy/ma/tests/test_extras.py +1132 -0
- numpy-1.10.0.post2/numpy/ma/tests/test_mrecords.py +520 -0
- numpy-1.10.0.post2/numpy/ma/tests/test_old_ma.py +879 -0
- numpy-1.10.0.post2/numpy/ma/tests/test_regression.py +80 -0
- numpy-1.10.0.post2/numpy/ma/tests/test_subclassing.py +338 -0
- numpy-1.10.0.post2/numpy/ma/testutils.py +289 -0
- numpy-1.10.0.post2/numpy/ma/timer_comparison.py +440 -0
- numpy-1.10.0.post2/numpy/matlib.py +358 -0
- numpy-1.10.0.post2/numpy/matrixlib/defmatrix.py +1232 -0
- numpy-1.10.0.post2/numpy/matrixlib/tests/test_defmatrix.py +449 -0
- numpy-1.10.0.post2/numpy/matrixlib/tests/test_multiarray.py +23 -0
- numpy-1.10.0.post2/numpy/matrixlib/tests/test_numeric.py +23 -0
- numpy-1.10.0.post2/numpy/matrixlib/tests/test_regression.py +37 -0
- numpy-1.10.0.post2/numpy/polynomial/_polybase.py +962 -0
- numpy-1.10.0.post2/numpy/polynomial/chebyshev.py +2056 -0
- numpy-1.10.0.post2/numpy/polynomial/hermite.py +1831 -0
- numpy-1.10.0.post2/numpy/polynomial/hermite_e.py +1828 -0
- numpy-1.10.0.post2/numpy/polynomial/laguerre.py +1780 -0
- numpy-1.10.0.post2/numpy/polynomial/legendre.py +1808 -0
- numpy-1.10.0.post2/numpy/polynomial/polyutils.py +403 -0
- numpy-1.10.0.post2/numpy/random/mtrand/distributions.c +912 -0
- numpy-1.10.0.post2/numpy/random/mtrand/mtrand.c +34805 -0
- numpy-1.10.0.post2/numpy/random/mtrand/mtrand.pyx +4766 -0
- numpy-1.10.0.post2/numpy/random/setup.py +61 -0
- numpy-1.10.0.post2/numpy/random/tests/test_random.py +723 -0
- numpy-1.10.0.post2/numpy/random/tests/test_regression.py +117 -0
- numpy-1.10.0.post2/numpy/setup.py +29 -0
- numpy-1.10.0.post2/numpy/testing/__init__.py +15 -0
- numpy-1.10.0.post2/numpy/testing/decorators.py +271 -0
- numpy-1.10.0.post2/numpy/testing/noseclasses.py +353 -0
- numpy-1.10.0.post2/numpy/testing/nosetester.py +511 -0
- numpy-1.10.0.post2/numpy/testing/print_coercion_tables.py +91 -0
- numpy-1.10.0.post2/numpy/testing/setup.py +20 -0
- numpy-1.10.0.post2/numpy/testing/tests/test_decorators.py +182 -0
- numpy-1.10.0.post2/numpy/testing/tests/test_utils.py +781 -0
- numpy-1.10.0.post2/numpy/testing/utils.py +1831 -0
- numpy-1.10.0.post2/numpy/tests/test_ctypeslib.py +106 -0
- numpy-1.10.0.post2/numpy/tests/test_matlib.py +55 -0
- numpy-1.10.0.post2/numpy/tests/test_scripts.py +69 -0
- numpy-1.10.0.post2/numpy/version.py +10 -0
- numpy-1.10.0.post2/setup.py +260 -0
- numpy-1.10.0.post2/site.cfg.example +193 -0
- numpy-1.10.0.post2/tmp.txt +789 -0
- numpy-1.10.0.post2/tools/swig/README +145 -0
- numpy-1.10.0.post2/tools/swig/numpy.i +3161 -0
- numpy-1.10.0.post2/tools/swig/test/Array.i +135 -0
- numpy-1.10.0.post2/tools/swig/test/ArrayZ.cxx +131 -0
- numpy-1.10.0.post2/tools/swig/test/ArrayZ.h +56 -0
- numpy-1.10.0.post2/tools/swig/test/Flat.cxx +36 -0
- numpy-1.10.0.post2/tools/swig/test/Flat.h +34 -0
- numpy-1.10.0.post2/tools/swig/test/Flat.i +36 -0
- numpy-1.10.0.post2/tools/swig/test/Makefile +37 -0
- numpy-1.10.0.post2/tools/swig/test/setup.py +71 -0
- numpy-1.10.0.post2/tools/swig/test/testArray.py +385 -0
- numpy-1.10.0.post2/tools/swig/test/testFarray.py +159 -0
- numpy-1.10.0.post2/tools/swig/test/testFlat.py +200 -0
- numpy-1.10.0.post2/tools/swig/test/testFortran.py +173 -0
- numpy-1.10.0.post2/tools/swig/test/testMatrix.py +362 -0
- numpy-1.10.0.post2/tools/swig/test/testSuperTensor.py +388 -0
- numpy-1.10.0.post2/tools/swig/test/testTensor.py +402 -0
- numpy-1.10.0.post2/tools/swig/test/testVector.py +381 -0
- numpy-1.9.2/INSTALL.txt +0 -138
- numpy-1.9.2/LICENSE.txt +0 -30
- numpy-1.9.2/MANIFEST.in +0 -26
- numpy-1.9.2/PKG-INFO +0 -39
- numpy-1.9.2/doc/scipy-sphinx-theme/.git +0 -1
- numpy-1.9.2/doc/source/conf.py +0 -331
- numpy-1.9.2/doc/source/dev/gitwash/branch_list.png +0 -0
- numpy-1.9.2/doc/source/dev/gitwash/branch_list_compare.png +0 -0
- numpy-1.9.2/doc/source/dev/gitwash/development_workflow.rst +0 -568
- numpy-1.9.2/doc/source/dev/gitwash/git_links.inc +0 -88
- numpy-1.9.2/doc/source/dev/gitwash/index.rst +0 -14
- numpy-1.9.2/doc/source/dev/index.rst +0 -10
- numpy-1.9.2/doc/source/reference/arrays.classes.rst +0 -427
- numpy-1.9.2/doc/source/reference/arrays.dtypes.rst +0 -534
- numpy-1.9.2/doc/source/reference/arrays.indexing.rst +0 -550
- numpy-1.9.2/doc/source/reference/arrays.interface.rst +0 -336
- numpy-1.9.2/doc/source/reference/arrays.ndarray.rst +0 -609
- numpy-1.9.2/doc/source/reference/arrays.scalars.rst +0 -291
- numpy-1.9.2/doc/source/reference/c-api.array.rst +0 -3362
- numpy-1.9.2/doc/source/reference/c-api.config.rst +0 -103
- numpy-1.9.2/doc/source/reference/c-api.coremath.rst +0 -420
- numpy-1.9.2/doc/source/reference/c-api.dtype.rst +0 -376
- numpy-1.9.2/doc/source/reference/c-api.generalized-ufuncs.rst +0 -171
- numpy-1.9.2/doc/source/reference/c-api.iterator.rst +0 -1298
- numpy-1.9.2/doc/source/reference/c-api.types-and-structures.rst +0 -1204
- numpy-1.9.2/doc/source/reference/c-api.ufunc.rst +0 -399
- numpy-1.9.2/doc/source/reference/index.rst +0 -44
- numpy-1.9.2/doc/source/reference/internals.code-explanations.rst +0 -666
- numpy-1.9.2/doc/source/reference/routines.array-manipulation.rst +0 -113
- numpy-1.9.2/doc/source/reference/routines.io.rst +0 -74
- numpy-1.9.2/doc/source/reference/routines.linalg.rst +0 -88
- numpy-1.9.2/doc/source/reference/routines.ma.rst +0 -405
- numpy-1.9.2/doc/source/reference/routines.sort.rst +0 -42
- numpy-1.9.2/doc/source/reference/routines.statistics.rst +0 -55
- numpy-1.9.2/doc/source/reference/swig.interface-file.rst +0 -1055
- numpy-1.9.2/doc/source/reference/swig.testing.rst +0 -166
- numpy-1.9.2/doc/source/reference/ufuncs.rst +0 -651
- numpy-1.9.2/doc/source/release.rst +0 -19
- numpy-1.9.2/doc/source/user/basics.io.genfromtxt.rst +0 -531
- numpy-1.9.2/doc/source/user/basics.rec.rst +0 -7
- numpy-1.9.2/doc/source/user/c-info.beyond-basics.rst +0 -560
- numpy-1.9.2/doc/source/user/c-info.how-to-extend.rst +0 -642
- numpy-1.9.2/doc/source/user/c-info.python-as-glue.rst +0 -1528
- numpy-1.9.2/doc/source/user/c-info.ufunc-tutorial.rst +0 -1211
- numpy-1.9.2/doc/source/user/install.rst +0 -180
- numpy-1.9.2/doc/sphinxext/.git +0 -1
- numpy-1.9.2/numpy/__init__.py +0 -216
- numpy-1.9.2/numpy/_import_tools.py +0 -348
- numpy-1.9.2/numpy/add_newdocs.py +0 -7518
- numpy-1.9.2/numpy/compat/_inspect.py +0 -221
- numpy-1.9.2/numpy/compat/py3k.py +0 -89
- numpy-1.9.2/numpy/compat/setup.py +0 -12
- numpy-1.9.2/numpy/core/__init__.py +0 -78
- numpy-1.9.2/numpy/core/_internal.py +0 -570
- numpy-1.9.2/numpy/core/_methods.py +0 -134
- numpy-1.9.2/numpy/core/arrayprint.py +0 -752
- numpy-1.9.2/numpy/core/blasdot/_dotblas.c +0 -1255
- numpy-1.9.2/numpy/core/blasdot/apple_sgemv_patch.c +0 -216
- numpy-1.9.2/numpy/core/blasdot/cblas.h +0 -578
- numpy-1.9.2/numpy/core/code_generators/cversions.txt +0 -31
- numpy-1.9.2/numpy/core/code_generators/generate_ufunc_api.py +0 -219
- numpy-1.9.2/numpy/core/code_generators/generate_umath.py +0 -972
- numpy-1.9.2/numpy/core/code_generators/numpy_api.py +0 -412
- numpy-1.9.2/numpy/core/code_generators/ufunc_docstrings.py +0 -3419
- numpy-1.9.2/numpy/core/defchararray.py +0 -2687
- numpy-1.9.2/numpy/core/fromnumeric.py +0 -2938
- numpy-1.9.2/numpy/core/function_base.py +0 -190
- numpy-1.9.2/numpy/core/getlimits.py +0 -306
- numpy-1.9.2/numpy/core/include/numpy/fenv/fenv.c +0 -38
- numpy-1.9.2/numpy/core/include/numpy/fenv/fenv.h +0 -224
- numpy-1.9.2/numpy/core/include/numpy/ndarrayobject.h +0 -237
- numpy-1.9.2/numpy/core/include/numpy/ndarraytypes.h +0 -1820
- numpy-1.9.2/numpy/core/include/numpy/npy_3kcompat.h +0 -506
- numpy-1.9.2/numpy/core/include/numpy/npy_common.h +0 -1038
- numpy-1.9.2/numpy/core/include/numpy/npy_cpu.h +0 -122
- numpy-1.9.2/numpy/core/include/numpy/npy_endian.h +0 -49
- numpy-1.9.2/numpy/core/include/numpy/npy_math.h +0 -479
- numpy-1.9.2/numpy/core/include/numpy/numpyconfig.h +0 -35
- numpy-1.9.2/numpy/core/machar.py +0 -338
- numpy-1.9.2/numpy/core/memmap.py +0 -308
- numpy-1.9.2/numpy/core/numeric.py +0 -2842
- numpy-1.9.2/numpy/core/numerictypes.py +0 -1042
- numpy-1.9.2/numpy/core/records.py +0 -804
- numpy-1.9.2/numpy/core/setup.py +0 -1016
- numpy-1.9.2/numpy/core/setup_common.py +0 -321
- numpy-1.9.2/numpy/core/shape_base.py +0 -277
- numpy-1.9.2/numpy/core/src/multiarray/alloc.c +0 -241
- numpy-1.9.2/numpy/core/src/multiarray/arrayobject.c +0 -1791
- numpy-1.9.2/numpy/core/src/multiarray/arraytypes.c.src +0 -4372
- numpy-1.9.2/numpy/core/src/multiarray/arraytypes.h +0 -13
- numpy-1.9.2/numpy/core/src/multiarray/buffer.c +0 -954
- numpy-1.9.2/numpy/core/src/multiarray/calculation.c +0 -1229
- numpy-1.9.2/numpy/core/src/multiarray/common.c +0 -798
- numpy-1.9.2/numpy/core/src/multiarray/common.h +0 -328
- numpy-1.9.2/numpy/core/src/multiarray/conversion_utils.c +0 -1240
- numpy-1.9.2/numpy/core/src/multiarray/convert.c +0 -589
- numpy-1.9.2/numpy/core/src/multiarray/convert_datatype.c +0 -2199
- numpy-1.9.2/numpy/core/src/multiarray/ctors.c +0 -3785
- numpy-1.9.2/numpy/core/src/multiarray/datetime.c +0 -3823
- numpy-1.9.2/numpy/core/src/multiarray/datetime_busday.c +0 -1322
- numpy-1.9.2/numpy/core/src/multiarray/datetime_busdaycal.c +0 -552
- numpy-1.9.2/numpy/core/src/multiarray/datetime_strings.c +0 -1772
- numpy-1.9.2/numpy/core/src/multiarray/descriptor.c +0 -3658
- numpy-1.9.2/numpy/core/src/multiarray/dtype_transfer.c +0 -4232
- numpy-1.9.2/numpy/core/src/multiarray/einsum.c.src +0 -3013
- numpy-1.9.2/numpy/core/src/multiarray/getset.c +0 -984
- numpy-1.9.2/numpy/core/src/multiarray/hashdescr.c +0 -319
- numpy-1.9.2/numpy/core/src/multiarray/item_selection.c +0 -2711
- numpy-1.9.2/numpy/core/src/multiarray/iterators.c +0 -2160
- numpy-1.9.2/numpy/core/src/multiarray/lowlevel_strided_loops.c.src +0 -1767
- numpy-1.9.2/numpy/core/src/multiarray/mapping.c +0 -3316
- numpy-1.9.2/numpy/core/src/multiarray/mapping.h +0 -73
- numpy-1.9.2/numpy/core/src/multiarray/methods.c +0 -2497
- numpy-1.9.2/numpy/core/src/multiarray/multiarray_tests.c.src +0 -977
- numpy-1.9.2/numpy/core/src/multiarray/multiarraymodule.c +0 -4202
- numpy-1.9.2/numpy/core/src/multiarray/multiarraymodule.h +0 -4
- numpy-1.9.2/numpy/core/src/multiarray/multiarraymodule_onefile.c +0 -58
- numpy-1.9.2/numpy/core/src/multiarray/nditer_api.c +0 -2809
- numpy-1.9.2/numpy/core/src/multiarray/nditer_constr.c +0 -3159
- numpy-1.9.2/numpy/core/src/multiarray/nditer_pywrap.c +0 -2492
- numpy-1.9.2/numpy/core/src/multiarray/number.c +0 -1057
- numpy-1.9.2/numpy/core/src/multiarray/number.h +0 -76
- numpy-1.9.2/numpy/core/src/multiarray/numpymemoryview.c +0 -309
- numpy-1.9.2/numpy/core/src/multiarray/numpyos.c +0 -683
- numpy-1.9.2/numpy/core/src/multiarray/scalarapi.c +0 -861
- numpy-1.9.2/numpy/core/src/multiarray/scalartypes.c.src +0 -4270
- numpy-1.9.2/numpy/core/src/multiarray/scalartypes.h +0 -52
- numpy-1.9.2/numpy/core/src/multiarray/shape.c +0 -1141
- numpy-1.9.2/numpy/core/src/multiarray/ucsnarrow.c +0 -173
- numpy-1.9.2/numpy/core/src/npymath/ieee754.c.src +0 -814
- numpy-1.9.2/numpy/core/src/npymath/npy_math.c.src +0 -527
- numpy-1.9.2/numpy/core/src/npymath/npy_math_complex.c.src +0 -291
- numpy-1.9.2/numpy/core/src/npymath/npy_math_private.h +0 -539
- numpy-1.9.2/numpy/core/src/npysort/heapsort.c.src +0 -341
- numpy-1.9.2/numpy/core/src/npysort/mergesort.c.src +0 -428
- numpy-1.9.2/numpy/core/src/npysort/npysort_common.h +0 -367
- numpy-1.9.2/numpy/core/src/npysort/quicksort.c.src +0 -363
- numpy-1.9.2/numpy/core/src/npysort/selection.c.src +0 -474
- numpy-1.9.2/numpy/core/src/private/npy_config.h +0 -44
- numpy-1.9.2/numpy/core/src/private/npy_partition.h.src +0 -138
- numpy-1.9.2/numpy/core/src/private/npy_sort.h +0 -194
- numpy-1.9.2/numpy/core/src/private/scalarmathmodule.h.src +0 -42
- numpy-1.9.2/numpy/core/src/private/ufunc_override.h +0 -384
- numpy-1.9.2/numpy/core/src/scalarmathmodule.c.src +0 -1980
- numpy-1.9.2/numpy/core/src/umath/funcs.inc.src +0 -715
- numpy-1.9.2/numpy/core/src/umath/loops.c.src +0 -2654
- numpy-1.9.2/numpy/core/src/umath/loops.h.src +0 -501
- numpy-1.9.2/numpy/core/src/umath/operand_flag_tests.c.src +0 -105
- numpy-1.9.2/numpy/core/src/umath/simd.inc.src +0 -881
- numpy-1.9.2/numpy/core/src/umath/test_rational.c.src +0 -1404
- numpy-1.9.2/numpy/core/src/umath/ufunc_object.c +0 -5520
- numpy-1.9.2/numpy/core/src/umath/ufunc_type_resolution.c +0 -2164
- numpy-1.9.2/numpy/core/src/umath/umath_tests.c.src +0 -341
- numpy-1.9.2/numpy/core/src/umath/umathmodule.c +0 -561
- numpy-1.9.2/numpy/core/src/umath/umathmodule_onefile.c +0 -6
- numpy-1.9.2/numpy/core/tests/test_abc.py +0 -45
- numpy-1.9.2/numpy/core/tests/test_api.py +0 -514
- numpy-1.9.2/numpy/core/tests/test_arrayprint.py +0 -167
- numpy-1.9.2/numpy/core/tests/test_blasdot.py +0 -249
- numpy-1.9.2/numpy/core/tests/test_datetime.py +0 -1781
- numpy-1.9.2/numpy/core/tests/test_defchararray.py +0 -642
- numpy-1.9.2/numpy/core/tests/test_deprecations.py +0 -512
- numpy-1.9.2/numpy/core/tests/test_dtype.py +0 -542
- numpy-1.9.2/numpy/core/tests/test_einsum.py +0 -583
- numpy-1.9.2/numpy/core/tests/test_errstate.py +0 -51
- numpy-1.9.2/numpy/core/tests/test_function_base.py +0 -111
- numpy-1.9.2/numpy/core/tests/test_getlimits.py +0 -86
- numpy-1.9.2/numpy/core/tests/test_half.py +0 -439
- numpy-1.9.2/numpy/core/tests/test_indexerrors.py +0 -127
- numpy-1.9.2/numpy/core/tests/test_indexing.py +0 -1014
- numpy-1.9.2/numpy/core/tests/test_item_selection.py +0 -70
- numpy-1.9.2/numpy/core/tests/test_machar.py +0 -30
- numpy-1.9.2/numpy/core/tests/test_memmap.py +0 -127
- numpy-1.9.2/numpy/core/tests/test_multiarray.py +0 -4645
- numpy-1.9.2/numpy/core/tests/test_multiarray_assignment.py +0 -80
- numpy-1.9.2/numpy/core/tests/test_nditer.py +0 -2630
- numpy-1.9.2/numpy/core/tests/test_numeric.py +0 -2117
- numpy-1.9.2/numpy/core/tests/test_numerictypes.py +0 -377
- numpy-1.9.2/numpy/core/tests/test_print.py +0 -245
- numpy-1.9.2/numpy/core/tests/test_records.py +0 -185
- numpy-1.9.2/numpy/core/tests/test_regression.py +0 -2108
- numpy-1.9.2/numpy/core/tests/test_scalarinherit.py +0 -34
- numpy-1.9.2/numpy/core/tests/test_scalarmath.py +0 -275
- numpy-1.9.2/numpy/core/tests/test_shape_base.py +0 -250
- numpy-1.9.2/numpy/core/tests/test_ufunc.py +0 -1153
- numpy-1.9.2/numpy/core/tests/test_umath.py +0 -1695
- numpy-1.9.2/numpy/core/tests/test_umath_complex.py +0 -537
- numpy-1.9.2/numpy/core/tests/test_unicode.py +0 -357
- numpy-1.9.2/numpy/distutils/__init__.py +0 -39
- numpy-1.9.2/numpy/distutils/ccompiler.py +0 -656
- numpy-1.9.2/numpy/distutils/command/autodist.py +0 -43
- numpy-1.9.2/numpy/distutils/command/build.py +0 -39
- numpy-1.9.2/numpy/distutils/command/build_clib.py +0 -284
- numpy-1.9.2/numpy/distutils/command/build_ext.py +0 -503
- numpy-1.9.2/numpy/distutils/command/config.py +0 -476
- numpy-1.9.2/numpy/distutils/exec_command.py +0 -618
- numpy-1.9.2/numpy/distutils/fcompiler/compaq.py +0 -128
- numpy-1.9.2/numpy/distutils/fcompiler/gnu.py +0 -390
- numpy-1.9.2/numpy/distutils/fcompiler/intel.py +0 -205
- numpy-1.9.2/numpy/distutils/fcompiler/pg.py +0 -60
- numpy-1.9.2/numpy/distutils/fcompiler/sun.py +0 -52
- numpy-1.9.2/numpy/distutils/intelccompiler.py +0 -45
- numpy-1.9.2/numpy/distutils/lib2def.py +0 -116
- numpy-1.9.2/numpy/distutils/mingw32ccompiler.py +0 -582
- numpy-1.9.2/numpy/distutils/misc_util.py +0 -2271
- numpy-1.9.2/numpy/distutils/npy_pkg_config.py +0 -464
- numpy-1.9.2/numpy/distutils/system_info.py +0 -2319
- numpy-1.9.2/numpy/distutils/tests/f2py_ext/tests/test_fib2.py +0 -13
- numpy-1.9.2/numpy/distutils/tests/f2py_f90_ext/tests/test_foo.py +0 -12
- numpy-1.9.2/numpy/distutils/tests/gen_ext/tests/test_fib3.py +0 -12
- numpy-1.9.2/numpy/distutils/tests/pyrex_ext/tests/test_primes.py +0 -14
- numpy-1.9.2/numpy/distutils/tests/swig_ext/tests/test_example.py +0 -18
- numpy-1.9.2/numpy/distutils/tests/swig_ext/tests/test_example2.py +0 -16
- numpy-1.9.2/numpy/distutils/tests/test_fcompiler_gnu.py +0 -53
- numpy-1.9.2/numpy/distutils/tests/test_fcompiler_intel.py +0 -36
- numpy-1.9.2/numpy/distutils/tests/test_misc_util.py +0 -75
- numpy-1.9.2/numpy/distutils/tests/test_npy_pkg_config.py +0 -98
- numpy-1.9.2/numpy/distutils/unixccompiler.py +0 -113
- numpy-1.9.2/numpy/doc/byteswapping.py +0 -147
- numpy-1.9.2/numpy/doc/creation.py +0 -144
- numpy-1.9.2/numpy/doc/glossary.py +0 -418
- numpy-1.9.2/numpy/doc/indexing.py +0 -437
- numpy-1.9.2/numpy/doc/structured_arrays.py +0 -223
- numpy-1.9.2/numpy/f2py/__init__.py +0 -49
- numpy-1.9.2/numpy/f2py/auxfuncs.py +0 -711
- numpy-1.9.2/numpy/f2py/capi_maps.py +0 -773
- numpy-1.9.2/numpy/f2py/cb_rules.py +0 -539
- numpy-1.9.2/numpy/f2py/cfuncs.py +0 -1224
- numpy-1.9.2/numpy/f2py/common_rules.py +0 -132
- numpy-1.9.2/numpy/f2py/crackfortran.py +0 -2870
- numpy-1.9.2/numpy/f2py/diagnose.py +0 -149
- numpy-1.9.2/numpy/f2py/f2py2e.py +0 -598
- numpy-1.9.2/numpy/f2py/f2py_testing.py +0 -46
- numpy-1.9.2/numpy/f2py/f90mod_rules.py +0 -246
- numpy-1.9.2/numpy/f2py/func2subr.py +0 -291
- numpy-1.9.2/numpy/f2py/rules.py +0 -1448
- numpy-1.9.2/numpy/f2py/setup.py +0 -129
- numpy-1.9.2/numpy/f2py/src/fortranobject.c +0 -972
- numpy-1.9.2/numpy/f2py/src/fortranobject.h +0 -162
- numpy-1.9.2/numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +0 -223
- numpy-1.9.2/numpy/f2py/tests/test_array_from_pyobj.py +0 -559
- numpy-1.9.2/numpy/f2py/tests/test_assumed_shape.py +0 -37
- numpy-1.9.2/numpy/f2py/tests/test_callback.py +0 -132
- numpy-1.9.2/numpy/f2py/tests/test_kind.py +0 -36
- numpy-1.9.2/numpy/f2py/tests/test_mixed.py +0 -41
- numpy-1.9.2/numpy/f2py/tests/test_regression.py +0 -32
- numpy-1.9.2/numpy/f2py/tests/test_return_character.py +0 -142
- numpy-1.9.2/numpy/f2py/tests/test_return_complex.py +0 -169
- numpy-1.9.2/numpy/f2py/tests/test_return_integer.py +0 -178
- numpy-1.9.2/numpy/f2py/tests/test_return_logical.py +0 -187
- numpy-1.9.2/numpy/f2py/tests/test_return_real.py +0 -203
- numpy-1.9.2/numpy/f2py/tests/test_size.py +0 -47
- numpy-1.9.2/numpy/f2py/tests/util.py +0 -353
- numpy-1.9.2/numpy/f2py/use_rules.py +0 -109
- numpy-1.9.2/numpy/fft/fftpack.c +0 -1501
- numpy-1.9.2/numpy/fft/fftpack.h +0 -28
- numpy-1.9.2/numpy/fft/fftpack.py +0 -1169
- numpy-1.9.2/numpy/fft/fftpack_litemodule.c +0 -371
- numpy-1.9.2/numpy/fft/info.py +0 -179
- numpy-1.9.2/numpy/fft/setup.py +0 -20
- numpy-1.9.2/numpy/fft/tests/test_fftpack.py +0 -75
- numpy-1.9.2/numpy/fft/tests/test_helper.py +0 -78
- numpy-1.9.2/numpy/lib/_iotools.py +0 -891
- numpy-1.9.2/numpy/lib/arraypad.py +0 -1475
- numpy-1.9.2/numpy/lib/arraysetops.py +0 -464
- numpy-1.9.2/numpy/lib/arrayterator.py +0 -226
- numpy-1.9.2/numpy/lib/financial.py +0 -737
- numpy-1.9.2/numpy/lib/format.py +0 -771
- numpy-1.9.2/numpy/lib/function_base.py +0 -3884
- numpy-1.9.2/numpy/lib/index_tricks.py +0 -869
- numpy-1.9.2/numpy/lib/info.py +0 -151
- numpy-1.9.2/numpy/lib/nanfunctions.py +0 -1158
- numpy-1.9.2/numpy/lib/npyio.py +0 -1918
- numpy-1.9.2/numpy/lib/polynomial.py +0 -1271
- numpy-1.9.2/numpy/lib/recfunctions.py +0 -1003
- numpy-1.9.2/numpy/lib/setup.py +0 -23
- numpy-1.9.2/numpy/lib/shape_base.py +0 -865
- numpy-1.9.2/numpy/lib/src/_compiled_base.c +0 -1761
- numpy-1.9.2/numpy/lib/stride_tricks.py +0 -123
- numpy-1.9.2/numpy/lib/tests/test__iotools.py +0 -326
- numpy-1.9.2/numpy/lib/tests/test__version.py +0 -57
- numpy-1.9.2/numpy/lib/tests/test_arraypad.py +0 -560
- numpy-1.9.2/numpy/lib/tests/test_arraysetops.py +0 -301
- numpy-1.9.2/numpy/lib/tests/test_financial.py +0 -160
- numpy-1.9.2/numpy/lib/tests/test_format.py +0 -716
- numpy-1.9.2/numpy/lib/tests/test_function_base.py +0 -2145
- numpy-1.9.2/numpy/lib/tests/test_index_tricks.py +0 -289
- numpy-1.9.2/numpy/lib/tests/test_io.py +0 -1754
- numpy-1.9.2/numpy/lib/tests/test_nanfunctions.py +0 -774
- numpy-1.9.2/numpy/lib/tests/test_polynomial.py +0 -177
- numpy-1.9.2/numpy/lib/tests/test_recfunctions.py +0 -705
- numpy-1.9.2/numpy/lib/tests/test_shape_base.py +0 -368
- numpy-1.9.2/numpy/lib/tests/test_stride_tricks.py +0 -238
- numpy-1.9.2/numpy/lib/tests/test_twodim_base.py +0 -504
- numpy-1.9.2/numpy/lib/tests/test_type_check.py +0 -328
- numpy-1.9.2/numpy/lib/twodim_base.py +0 -1003
- numpy-1.9.2/numpy/lib/type_check.py +0 -605
- numpy-1.9.2/numpy/lib/utils.py +0 -1176
- numpy-1.9.2/numpy/linalg/lapack_lite/python_xerbla.c +0 -47
- numpy-1.9.2/numpy/linalg/lapack_litemodule.c +0 -362
- numpy-1.9.2/numpy/linalg/linalg.py +0 -2136
- numpy-1.9.2/numpy/linalg/tests/test_build.py +0 -53
- numpy-1.9.2/numpy/linalg/tests/test_linalg.py +0 -1156
- numpy-1.9.2/numpy/linalg/tests/test_regression.py +0 -90
- numpy-1.9.2/numpy/linalg/umath_linalg.c.src +0 -3210
- numpy-1.9.2/numpy/ma/__init__.py +0 -58
- numpy-1.9.2/numpy/ma/bench.py +0 -166
- numpy-1.9.2/numpy/ma/core.py +0 -7374
- numpy-1.9.2/numpy/ma/extras.py +0 -1932
- numpy-1.9.2/numpy/ma/mrecords.py +0 -734
- numpy-1.9.2/numpy/ma/setup.py +0 -20
- numpy-1.9.2/numpy/ma/tests/test_core.py +0 -3706
- numpy-1.9.2/numpy/ma/tests/test_extras.py +0 -954
- numpy-1.9.2/numpy/ma/tests/test_mrecords.py +0 -521
- numpy-1.9.2/numpy/ma/tests/test_old_ma.py +0 -869
- numpy-1.9.2/numpy/ma/tests/test_regression.py +0 -75
- numpy-1.9.2/numpy/ma/tests/test_subclassing.py +0 -236
- numpy-1.9.2/numpy/ma/testutils.py +0 -240
- numpy-1.9.2/numpy/ma/timer_comparison.py +0 -459
- numpy-1.9.2/numpy/matlib.py +0 -358
- numpy-1.9.2/numpy/matrixlib/defmatrix.py +0 -1094
- numpy-1.9.2/numpy/matrixlib/tests/test_defmatrix.py +0 -400
- numpy-1.9.2/numpy/matrixlib/tests/test_multiarray.py +0 -18
- numpy-1.9.2/numpy/matrixlib/tests/test_numeric.py +0 -10
- numpy-1.9.2/numpy/matrixlib/tests/test_regression.py +0 -34
- numpy-1.9.2/numpy/polynomial/_polybase.py +0 -962
- numpy-1.9.2/numpy/polynomial/chebyshev.py +0 -2056
- numpy-1.9.2/numpy/polynomial/hermite.py +0 -1789
- numpy-1.9.2/numpy/polynomial/hermite_e.py +0 -1786
- numpy-1.9.2/numpy/polynomial/laguerre.py +0 -1781
- numpy-1.9.2/numpy/polynomial/legendre.py +0 -1809
- numpy-1.9.2/numpy/polynomial/polytemplate.py +0 -927
- numpy-1.9.2/numpy/polynomial/polyutils.py +0 -403
- numpy-1.9.2/numpy/random/mtrand/distributions.c +0 -892
- numpy-1.9.2/numpy/random/mtrand/mtrand.c +0 -31204
- numpy-1.9.2/numpy/random/mtrand/mtrand.pyx +0 -4706
- numpy-1.9.2/numpy/random/setup.py +0 -74
- numpy-1.9.2/numpy/random/tests/test_random.py +0 -707
- numpy-1.9.2/numpy/random/tests/test_regression.py +0 -86
- numpy-1.9.2/numpy/setup.py +0 -27
- numpy-1.9.2/numpy/testing/__init__.py +0 -16
- numpy-1.9.2/numpy/testing/decorators.py +0 -271
- numpy-1.9.2/numpy/testing/noseclasses.py +0 -353
- numpy-1.9.2/numpy/testing/nosetester.py +0 -504
- numpy-1.9.2/numpy/testing/print_coercion_tables.py +0 -89
- numpy-1.9.2/numpy/testing/setup.py +0 -20
- numpy-1.9.2/numpy/testing/tests/test_decorators.py +0 -185
- numpy-1.9.2/numpy/testing/tests/test_utils.py +0 -558
- numpy-1.9.2/numpy/testing/utils.py +0 -1715
- numpy-1.9.2/numpy/tests/test_ctypeslib.py +0 -102
- numpy-1.9.2/numpy/tests/test_matlib.py +0 -55
- numpy-1.9.2/numpy/version.py +0 -10
- numpy-1.9.2/setup.py +0 -251
- numpy-1.9.2/site.cfg.example +0 -157
- numpy-1.9.2/tools/swig/README +0 -135
- numpy-1.9.2/tools/swig/numpy.i +0 -3085
- numpy-1.9.2/tools/swig/test/Array.i +0 -102
- numpy-1.9.2/tools/swig/test/Makefile +0 -34
- numpy-1.9.2/tools/swig/test/setup.py +0 -64
- numpy-1.9.2/tools/swig/test/testArray.py +0 -284
- numpy-1.9.2/tools/swig/test/testFarray.py +0 -159
- numpy-1.9.2/tools/swig/test/testFortran.py +0 -173
- numpy-1.9.2/tools/swig/test/testMatrix.py +0 -362
- numpy-1.9.2/tools/swig/test/testSuperTensor.py +0 -388
- numpy-1.9.2/tools/swig/test/testTensor.py +0 -402
- numpy-1.9.2/tools/swig/test/testVector.py +0 -381
- {numpy-1.9.2 → numpy-1.10.0.post2}/BENTO_BUILD.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/COMPATIBILITY +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/DEV_README.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/README.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/THANKS.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/Makefile +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/BUGS.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/FAQ.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/HISTORY.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/Makefile +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/OLDNEWS.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/README.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/Release-1.x.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/Release-2.x.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/Release-3.x.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/Release-4.x.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/TESTING.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/THANKS.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/TODO.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/apps.tex +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/bugs.tex +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/collectinput.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/commands.tex +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/default.css +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/docutils.conf +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/ex1/arr.f +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/ex1/bar.f +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/ex1/foo.f +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/ex1/foobar-smart.f90 +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/ex1/foobar.f90 +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/ex1/foobarmodule.tex +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/ex1/runme +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2py.1 +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2py2e.tex +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/README.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/aerostructure.jpg +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/flow.jpg +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/mk_html.sh +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/mk_pdf.sh +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/mk_ps.sh +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/exp1.f +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/exp1mess.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/exp1session.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/foo.pyf +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/foom.pyf +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/structure.jpg +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/fortranobject.tex +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/hello.f +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/index.html +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/intro.tex +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/multiarray/array_from_pyobj.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/multiarray/bar.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/multiarray/foo.f +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/multiarray/fortran_array_from_pyobj.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/multiarray/fun.pyf +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/multiarray/run.pyf +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/multiarray/transpose.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/multiarrays.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/notes.tex +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/oldnews.html +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/options.tex +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/pyforttest.pyf +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/pytest.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/python9.tex +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/signaturefile.tex +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/simple.f +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/simple_session.dat +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/using_F_compiler.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/win32_notes.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/postprocess.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.3.0-notes.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.4.0-notes.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.5.0-notes.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.6.0-notes.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.6.1-notes.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.6.2-notes.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.7.0-notes.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.7.1-notes.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.7.2-notes.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.8.0-notes.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.8.1-notes.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.8.2-notes.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.9.0-notes.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.9.1-notes.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.9.2-notes.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/time_based_proposal.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/.gitignore +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/Makefile +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/README.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_static/scipyshiny_small.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/layout.html +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/searchbox.html +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/sourcelink.html +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/extend.css +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/pygments.css +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/scipy-central.css +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/spc-bootstrap.css +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/spc-extend.css +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/all-icons.svg +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/contents.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/create-new-account-icon.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-icon-shrunk.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-icon.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-icon.svg +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-list-icon-tiniest.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-list-icon-tiny.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-list-icon.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ad.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ae.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-af.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ag.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ai.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-al.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-am.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ao.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-aq.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ar.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-as.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-at.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-au.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-aw.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-az.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ba.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bb.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bd.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-be.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bf.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bg.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bh.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bi.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bj.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bl.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bm.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bn.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bo.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-br.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bs.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bt.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bw.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-by.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bz.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ca.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cc.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cd.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cf.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cg.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ch.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ci.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ck.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cl.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cm.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cn.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-co.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cr.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cu.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cv.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cw.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cx.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cy.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cz.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-de.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-dj.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-dk.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-dm.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-do.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-dz.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ec.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ee.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-eg.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-er.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-es.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-et.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fi.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fj.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fk.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fm.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fo.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fr.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ga.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gb.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gd.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ge.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gf.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gg.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gh.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gi.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gl.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gm.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gn.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gq.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gr.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gs.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gt.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gu.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gw.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gy.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hk.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hm.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hn.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hr.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ht.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hu.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-id.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ie.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-il.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-im.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-in.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-io.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-iq.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ir.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-is.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-it.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-je.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-jm.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-jo.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-jp.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ke.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kg.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kh.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ki.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-km.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kn.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kp.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kr.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kw.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ky.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kz.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-la.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lb.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lc.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-li.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lk.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lr.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ls.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lt.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lu.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lv.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ly.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ma.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mc.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-md.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-me.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mf.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mg.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mh.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mk.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ml.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mm.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mn.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mo.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mp.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mq.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mr.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ms.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mt.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mu.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mv.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mw.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mx.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-my.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mz.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-na.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nc.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ne.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nf.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ng.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ni.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nl.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-no.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-np.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nr.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nu.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nz.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-om.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pa.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pe.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pf.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pg.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ph.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pk.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pl.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pm.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pn.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pr.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ps.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pt.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pw.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-py.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-qa.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-re.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ro.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-rs.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ru.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-rw.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sa.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sb.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sc.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sd.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-se.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sg.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sh.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-si.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sj.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sk.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sl.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sm.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sn.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-so.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sr.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-st.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sv.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sy.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sz.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tc.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-td.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tf.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tg.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-th.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tj.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tk.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tl.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tm.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tn.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-to.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tr.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tt.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tv.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tw.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tz.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ua.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ug.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-um.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-us.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-uy.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-uz.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-va.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vc.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ve.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vg.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vi.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vn.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vu.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-wf.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ws.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ye.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-za.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-zm.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-zw.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/glyphicons-halflings-white.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/glyphicons-halflings.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/important-icon.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/information-icon.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/internet-web-browser.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-icon-shrunk.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-icon.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-icon.svg +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-list-icon-tiny.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-list-icon.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/navigation.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/person-list-icon-tiny.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/person-list-icon.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/scipy-logo.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/scipy_org_logo.gif +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/scipycentral_logo.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/scipyshiny_small.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/send-email-icon.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-icon-shrunk.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-icon.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-icon.svg +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-list-icon-tiniest.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-list-icon-tiny.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-list-icon.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/transparent-pixel.gif +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/ui-anim_basic_16x16.gif +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/js/copybutton.js +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/accordion.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/alerts.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/bootstrap.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/breadcrumbs.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/button-groups.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/buttons.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/carousel.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/close.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/code.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/component-animations.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/dropdowns.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/forms.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/grid.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/hero-unit.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/labels-badges.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/layouts.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/media.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/mixins.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/modals.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/navbar.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/navs.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/pager.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/pagination.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/popovers.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/progress-bars.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/reset.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-1200px-min.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-767px-max.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-768px-979px.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-navbar.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-utilities.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/scaffolding.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/sprites.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/tables.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/thumbnails.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/tooltip.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/type.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/utilities.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/variables.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/wells.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-bootstrap.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-content.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-extend.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-footer.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-header.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-rightsidebar.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-utils.less +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/scipy.css_t +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/theme.conf +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/conf.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/index.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_autodoc.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_autodoc_2.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_autodoc_3.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_autodoc_4.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_optimize.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/_templates/autosummary/class.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/_templates/indexcontent.html +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/_templates/indexsidebar.html +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/_templates/layout.html +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/about.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/bugs.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/contents.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/dev/gitwash/configure_git.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/dev/gitwash/development_setup.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/dev/gitwash/dot2_dot3.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/dev/gitwash/following_latest.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/dev/gitwash/forking_button.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/dev/gitwash/git_development.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/dev/gitwash/git_intro.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/dev/gitwash/git_resources.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/dev/gitwash/pull_button.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/dev/gitwash_links.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/advanced.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/allocarr.f90 +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/allocarr_session.dat +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/array.f +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/array_session.dat +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/calculate.f +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/calculate_session.dat +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/callback.f +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/callback2.pyf +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/callback_session.dat +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/common.f +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/common_session.dat +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/compile_session.dat +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/distutils.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/extcallback.f +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/extcallback_session.dat +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/fib1.f +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/fib1.pyf +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/fib2.pyf +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/fib3.f +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/ftype.f +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/ftype_session.dat +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/getting-started.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/index.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/moddata.f90 +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/moddata_session.dat +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/python-usage.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/run_main_session.dat +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/scalar.f +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/scalar_session.dat +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/setup_example.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/signature-file.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/spam.pyf +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/spam_session.dat +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/string.f +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/string_session.dat +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/usage.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/var.pyf +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/var_session.dat +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/glossary.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/license.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/datetime-proposal.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/datetime-proposal3.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/deferred-ufunc-evaluation.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/generalized-ufuncs.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/groupby_additions.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/index.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/math_config_clean.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/missing-data.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/new-iterator-ufunc.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/newbugtracker.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/npy-format.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/structured_array_extensions.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/ufunc-overrides.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/warnfix.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/arrays.datetime.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/arrays.nditer.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/arrays.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/c-api.deprecations.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/c-api.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/distutils.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/figures/dtype-hierarchy.dia +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/figures/dtype-hierarchy.pdf +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/figures/dtype-hierarchy.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/figures/threefundamental.fig +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/figures/threefundamental.pdf +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/figures/threefundamental.png +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/internals.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/maskedarray.baseclass.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/maskedarray.generic.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/maskedarray.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.array-creation.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.bitwise.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.char.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.ctypeslib.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.datetime.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.dtype.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.dual.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.emath.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.err.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.fft.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.financial.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.functional.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.help.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.indexing.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.logic.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.math.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.matlib.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.numarray.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.oldnumeric.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.other.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.padding.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.chebyshev.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.classes.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.hermite.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.hermite_e.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.laguerre.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.legendre.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.package.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.poly1d.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.polynomial.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.random.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.set.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.testing.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.window.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/swig.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/basics.broadcasting.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/basics.byteswapping.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/basics.creation.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/basics.indexing.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/basics.io.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/basics.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/basics.subclassing.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/basics.types.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/c-info.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/howtofind.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/index.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/introduction.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/misc.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/performance.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/whatisnumpy.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/.gitignore +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/.travis.yml +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/LICENSE.txt +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/MANIFEST.in +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/README.rst +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/__init__.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/comment_eater.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/compiler_unparse.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/docscrape.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/docscrape_sphinx.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/linkcode.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/numpydoc.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/phantom_import.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/plot_directive.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_docscrape.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_linkcode.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_phantom_import.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_plot_directive.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_traitsdoc.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/traitsdoc.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/setup.py +0 -0
- {numpy-1.9.2/numpy/core/code_generators → numpy-1.10.0.post2/numpy/_build_utils}/__init__.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/compat/__init__.py +0 -0
- {numpy-1.9.2/numpy/distutils/tests/f2py_ext → numpy-1.10.0.post2/numpy/core/code_generators}/__init__.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/code_generators/genapi.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/code_generators/generate_numpy_api.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/cversions.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/_neighborhood_iterator_imp.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/_numpyconfig.h.in +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/arrayobject.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/arrayscalars.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/halffloat.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/noprefix.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/npy_1_7_deprecated_api.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/npy_interrupt.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/npy_no_deprecated_api.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/npy_os.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/old_defines.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/oldnumeric.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/ufuncobject.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/utils.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/info.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/mlib.ini.in +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/npymath.ini.in +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/dummymodule.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/_datetime.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/alloc.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/array_assign.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/array_assign.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/array_assign_array.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/array_assign_scalar.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/arrayobject.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/buffer.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/calculation.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/conversion_utils.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/convert.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/convert_datatype.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/ctors.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/datetime_busday.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/datetime_busdaycal.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/datetime_strings.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/descriptor.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/flagsobject.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/getset.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/hashdescr.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/item_selection.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/iterators.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/methods.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/nditer_impl.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/nditer_pywrap.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/nditer_templ.c.src +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/numpymemoryview.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/numpyos.h +0 -0
- {numpy-1.9.2/numpy/core/blasdot → numpy-1.10.0.post2/numpy/core/src/multiarray}/python_xerbla.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/refcount.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/refcount.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/sequence.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/sequence.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/shape.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/ucsnarrow.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/usertypes.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/usertypes.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/npymath/_signbit.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/npymath/halffloat.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/npymath/npy_math_common.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/npysort/binsearch.c.src +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/private/lowlevel_strided_loops.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/private/npy_binsearch.h.src +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/private/npy_fpmath.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/private/npy_pycompat.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/umath/reduction.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/umath/reduction.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/umath/struct_ufunc_test.c.src +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/umath/ufunc_object.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/umath/ufunc_type_resolution.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/tests/data/astype_copy.pkl +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/tests/data/recarray_from_file.fits +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/tests/test_scalarprint.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/ctypeslib.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/__version__.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/__init__.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/bdist_rpm.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/build_py.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/build_scripts.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/build_src.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/config_compiler.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/develop.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/egg_info.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/install.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/install_clib.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/install_data.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/install_headers.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/sdist.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/compat.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/conv_template.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/core.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/cpuinfo.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/environment.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/extension.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/__init__.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/absoft.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/g95.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/hpux.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/ibm.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/lahey.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/mips.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/nag.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/none.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/pathf95.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/vast.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/from_template.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/info.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/line_endings.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/log.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/mingw/gfortran_vs2003_hack.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/numpy_distribution.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/pathccompiler.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/setup.py +0 -0
- {numpy-1.9.2/numpy/distutils/tests/f2py_f90_ext → numpy-1.10.0.post2/numpy/distutils/tests/f2py_ext}/__init__.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_ext/setup.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_ext/src/fib1.f +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_ext/src/fib2.pyf +0 -0
- {numpy-1.9.2/numpy/distutils/tests/gen_ext → numpy-1.10.0.post2/numpy/distutils/tests/f2py_f90_ext}/__init__.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_f90_ext/include/body.f90 +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_f90_ext/setup.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_f90_ext/src/foo_free.f90 +0 -0
- {numpy-1.9.2/numpy/distutils/tests/pyrex_ext → numpy-1.10.0.post2/numpy/distutils/tests/gen_ext}/__init__.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/gen_ext/setup.py +0 -0
- {numpy-1.9.2/numpy/distutils/tests/swig_ext → numpy-1.10.0.post2/numpy/distutils/tests/pyrex_ext}/__init__.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/pyrex_ext/primes.pyx +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/pyrex_ext/setup.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/setup.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/setup.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/example.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/example.i +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/zoo.cc +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/zoo.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/zoo.i +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/test_exec_command.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/__init__.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/basics.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/broadcasting.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/constants.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/howtofind.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/internals.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/io.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/jargon.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/methods_vs_functions.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/misc.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/performance.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/subclassing.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/ufuncs.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/dual.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/__version__.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/info.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/.f2py_f2cmap +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/foo_free.f90 +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/foo_mod.f90 +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/foo_use.f90 +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/precision.f90 +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/kind/foo.f90 +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/mixed/foo.f +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/mixed/foo_fixed.f90 +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/mixed/foo_free.f90 +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/regression/inout.f90 +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/size/foo.f90 +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/fft/__init__.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/fft/helper.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/__init__.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/_datasource.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/_version.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/scimath.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/tests/data/python3.npy +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/tests/data/win64python2.npy +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/tests/test__datasource.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/tests/test_arrayterator.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/tests/test_regression.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/tests/test_ufunclike.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/tests/test_utils.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/ufunclike.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/user_array.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/linalg/__init__.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/linalg/info.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/blas_lite.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/dlamch.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/dlapack_lite.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/f2c.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/f2c_lite.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/zlapack_lite.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/linalg/setup.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/linalg/tests/test_deprecations.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/ma/version.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/matrixlib/__init__.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/matrixlib/setup.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/__init__.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/polynomial.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/setup.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_chebyshev.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_classes.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_hermite.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_hermite_e.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_laguerre.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_legendre.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_polynomial.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_polyutils.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_printing.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/__init__.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/info.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/mtrand/Python.pxi +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/mtrand/distributions.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/mtrand/generate_mtrand_c.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/mtrand/initarray.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/mtrand/initarray.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/mtrand/mtrand_py_helper.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/mtrand/numpy.pxd +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/mtrand/randomkit.c +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/mtrand/randomkit.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/testing/tests/test_doctesting.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/setupegg.py +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/Makefile +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/pyfragments.swg +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Array1.cxx +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Array1.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Array2.cxx +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Array2.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Farray.cxx +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Farray.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Farray.i +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Fortran.cxx +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Fortran.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Fortran.i +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Matrix.cxx +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Matrix.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Matrix.i +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/SuperTensor.cxx +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/SuperTensor.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/SuperTensor.i +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Tensor.cxx +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Tensor.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Tensor.i +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Vector.cxx +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Vector.h +0 -0
- {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Vector.i +0 -0
|
@@ -0,0 +1,1992 @@
|
|
|
1
|
+
from __future__ import division, absolute_import, print_function
|
|
2
|
+
|
|
3
|
+
import sys
|
|
4
|
+
import os
|
|
5
|
+
import re
|
|
6
|
+
import itertools
|
|
7
|
+
import warnings
|
|
8
|
+
import weakref
|
|
9
|
+
from operator import itemgetter
|
|
10
|
+
|
|
11
|
+
import numpy as np
|
|
12
|
+
from . import format
|
|
13
|
+
from ._datasource import DataSource
|
|
14
|
+
from numpy.core.multiarray import packbits, unpackbits
|
|
15
|
+
from ._iotools import (
|
|
16
|
+
LineSplitter, NameValidator, StringConverter, ConverterError,
|
|
17
|
+
ConverterLockError, ConversionWarning, _is_string_like, has_nested_fields,
|
|
18
|
+
flatten_dtype, easy_dtype, _bytes_to_name
|
|
19
|
+
)
|
|
20
|
+
|
|
21
|
+
from numpy.compat import (
|
|
22
|
+
asbytes, asstr, asbytes_nested, bytes, basestring, unicode
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
if sys.version_info[0] >= 3:
|
|
26
|
+
import pickle
|
|
27
|
+
else:
|
|
28
|
+
import cPickle as pickle
|
|
29
|
+
from future_builtins import map
|
|
30
|
+
|
|
31
|
+
loads = pickle.loads
|
|
32
|
+
|
|
33
|
+
__all__ = [
|
|
34
|
+
'savetxt', 'loadtxt', 'genfromtxt', 'ndfromtxt', 'mafromtxt',
|
|
35
|
+
'recfromtxt', 'recfromcsv', 'load', 'loads', 'save', 'savez',
|
|
36
|
+
'savez_compressed', 'packbits', 'unpackbits', 'fromregex', 'DataSource'
|
|
37
|
+
]
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
class BagObj(object):
|
|
41
|
+
"""
|
|
42
|
+
BagObj(obj)
|
|
43
|
+
|
|
44
|
+
Convert attribute look-ups to getitems on the object passed in.
|
|
45
|
+
|
|
46
|
+
Parameters
|
|
47
|
+
----------
|
|
48
|
+
obj : class instance
|
|
49
|
+
Object on which attribute look-up is performed.
|
|
50
|
+
|
|
51
|
+
Examples
|
|
52
|
+
--------
|
|
53
|
+
>>> from numpy.lib.npyio import BagObj as BO
|
|
54
|
+
>>> class BagDemo(object):
|
|
55
|
+
... def __getitem__(self, key): # An instance of BagObj(BagDemo)
|
|
56
|
+
... # will call this method when any
|
|
57
|
+
... # attribute look-up is required
|
|
58
|
+
... result = "Doesn't matter what you want, "
|
|
59
|
+
... return result + "you're gonna get this"
|
|
60
|
+
...
|
|
61
|
+
>>> demo_obj = BagDemo()
|
|
62
|
+
>>> bagobj = BO(demo_obj)
|
|
63
|
+
>>> bagobj.hello_there
|
|
64
|
+
"Doesn't matter what you want, you're gonna get this"
|
|
65
|
+
>>> bagobj.I_can_be_anything
|
|
66
|
+
"Doesn't matter what you want, you're gonna get this"
|
|
67
|
+
|
|
68
|
+
"""
|
|
69
|
+
|
|
70
|
+
def __init__(self, obj):
|
|
71
|
+
# Use weakref to make NpzFile objects collectable by refcount
|
|
72
|
+
self._obj = weakref.proxy(obj)
|
|
73
|
+
|
|
74
|
+
def __getattribute__(self, key):
|
|
75
|
+
try:
|
|
76
|
+
return object.__getattribute__(self, '_obj')[key]
|
|
77
|
+
except KeyError:
|
|
78
|
+
raise AttributeError(key)
|
|
79
|
+
|
|
80
|
+
def __dir__(self):
|
|
81
|
+
"""
|
|
82
|
+
Enables dir(bagobj) to list the files in an NpzFile.
|
|
83
|
+
|
|
84
|
+
This also enables tab-completion in an interpreter or IPython.
|
|
85
|
+
"""
|
|
86
|
+
return object.__getattribute__(self, '_obj').keys()
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
def zipfile_factory(*args, **kwargs):
|
|
90
|
+
import zipfile
|
|
91
|
+
kwargs['allowZip64'] = True
|
|
92
|
+
return zipfile.ZipFile(*args, **kwargs)
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
class NpzFile(object):
|
|
96
|
+
"""
|
|
97
|
+
NpzFile(fid)
|
|
98
|
+
|
|
99
|
+
A dictionary-like object with lazy-loading of files in the zipped
|
|
100
|
+
archive provided on construction.
|
|
101
|
+
|
|
102
|
+
`NpzFile` is used to load files in the NumPy ``.npz`` data archive
|
|
103
|
+
format. It assumes that files in the archive have a ``.npy`` extension,
|
|
104
|
+
other files are ignored.
|
|
105
|
+
|
|
106
|
+
The arrays and file strings are lazily loaded on either
|
|
107
|
+
getitem access using ``obj['key']`` or attribute lookup using
|
|
108
|
+
``obj.f.key``. A list of all files (without ``.npy`` extensions) can
|
|
109
|
+
be obtained with ``obj.files`` and the ZipFile object itself using
|
|
110
|
+
``obj.zip``.
|
|
111
|
+
|
|
112
|
+
Attributes
|
|
113
|
+
----------
|
|
114
|
+
files : list of str
|
|
115
|
+
List of all files in the archive with a ``.npy`` extension.
|
|
116
|
+
zip : ZipFile instance
|
|
117
|
+
The ZipFile object initialized with the zipped archive.
|
|
118
|
+
f : BagObj instance
|
|
119
|
+
An object on which attribute can be performed as an alternative
|
|
120
|
+
to getitem access on the `NpzFile` instance itself.
|
|
121
|
+
allow_pickle : bool, optional
|
|
122
|
+
Allow loading pickled data. Default: True
|
|
123
|
+
pickle_kwargs : dict, optional
|
|
124
|
+
Additional keyword arguments to pass on to pickle.load.
|
|
125
|
+
These are only useful when loading object arrays saved on
|
|
126
|
+
Python 2 when using Python 3.
|
|
127
|
+
|
|
128
|
+
Parameters
|
|
129
|
+
----------
|
|
130
|
+
fid : file or str
|
|
131
|
+
The zipped archive to open. This is either a file-like object
|
|
132
|
+
or a string containing the path to the archive.
|
|
133
|
+
own_fid : bool, optional
|
|
134
|
+
Whether NpzFile should close the file handle.
|
|
135
|
+
Requires that `fid` is a file-like object.
|
|
136
|
+
|
|
137
|
+
Examples
|
|
138
|
+
--------
|
|
139
|
+
>>> from tempfile import TemporaryFile
|
|
140
|
+
>>> outfile = TemporaryFile()
|
|
141
|
+
>>> x = np.arange(10)
|
|
142
|
+
>>> y = np.sin(x)
|
|
143
|
+
>>> np.savez(outfile, x=x, y=y)
|
|
144
|
+
>>> outfile.seek(0)
|
|
145
|
+
|
|
146
|
+
>>> npz = np.load(outfile)
|
|
147
|
+
>>> isinstance(npz, np.lib.io.NpzFile)
|
|
148
|
+
True
|
|
149
|
+
>>> npz.files
|
|
150
|
+
['y', 'x']
|
|
151
|
+
>>> npz['x'] # getitem access
|
|
152
|
+
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
|
|
153
|
+
>>> npz.f.x # attribute lookup
|
|
154
|
+
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
|
|
155
|
+
|
|
156
|
+
"""
|
|
157
|
+
|
|
158
|
+
def __init__(self, fid, own_fid=False, allow_pickle=True,
|
|
159
|
+
pickle_kwargs=None):
|
|
160
|
+
# Import is postponed to here since zipfile depends on gzip, an
|
|
161
|
+
# optional component of the so-called standard library.
|
|
162
|
+
_zip = zipfile_factory(fid)
|
|
163
|
+
self._files = _zip.namelist()
|
|
164
|
+
self.files = []
|
|
165
|
+
self.allow_pickle = allow_pickle
|
|
166
|
+
self.pickle_kwargs = pickle_kwargs
|
|
167
|
+
for x in self._files:
|
|
168
|
+
if x.endswith('.npy'):
|
|
169
|
+
self.files.append(x[:-4])
|
|
170
|
+
else:
|
|
171
|
+
self.files.append(x)
|
|
172
|
+
self.zip = _zip
|
|
173
|
+
self.f = BagObj(self)
|
|
174
|
+
if own_fid:
|
|
175
|
+
self.fid = fid
|
|
176
|
+
else:
|
|
177
|
+
self.fid = None
|
|
178
|
+
|
|
179
|
+
def __enter__(self):
|
|
180
|
+
return self
|
|
181
|
+
|
|
182
|
+
def __exit__(self, exc_type, exc_value, traceback):
|
|
183
|
+
self.close()
|
|
184
|
+
|
|
185
|
+
def close(self):
|
|
186
|
+
"""
|
|
187
|
+
Close the file.
|
|
188
|
+
|
|
189
|
+
"""
|
|
190
|
+
if self.zip is not None:
|
|
191
|
+
self.zip.close()
|
|
192
|
+
self.zip = None
|
|
193
|
+
if self.fid is not None:
|
|
194
|
+
self.fid.close()
|
|
195
|
+
self.fid = None
|
|
196
|
+
self.f = None # break reference cycle
|
|
197
|
+
|
|
198
|
+
def __del__(self):
|
|
199
|
+
self.close()
|
|
200
|
+
|
|
201
|
+
def __getitem__(self, key):
|
|
202
|
+
# FIXME: This seems like it will copy strings around
|
|
203
|
+
# more than is strictly necessary. The zipfile
|
|
204
|
+
# will read the string and then
|
|
205
|
+
# the format.read_array will copy the string
|
|
206
|
+
# to another place in memory.
|
|
207
|
+
# It would be better if the zipfile could read
|
|
208
|
+
# (or at least uncompress) the data
|
|
209
|
+
# directly into the array memory.
|
|
210
|
+
member = 0
|
|
211
|
+
if key in self._files:
|
|
212
|
+
member = 1
|
|
213
|
+
elif key in self.files:
|
|
214
|
+
member = 1
|
|
215
|
+
key += '.npy'
|
|
216
|
+
if member:
|
|
217
|
+
bytes = self.zip.open(key)
|
|
218
|
+
magic = bytes.read(len(format.MAGIC_PREFIX))
|
|
219
|
+
bytes.close()
|
|
220
|
+
if magic == format.MAGIC_PREFIX:
|
|
221
|
+
bytes = self.zip.open(key)
|
|
222
|
+
return format.read_array(bytes,
|
|
223
|
+
allow_pickle=self.allow_pickle,
|
|
224
|
+
pickle_kwargs=self.pickle_kwargs)
|
|
225
|
+
else:
|
|
226
|
+
return self.zip.read(key)
|
|
227
|
+
else:
|
|
228
|
+
raise KeyError("%s is not a file in the archive" % key)
|
|
229
|
+
|
|
230
|
+
def __iter__(self):
|
|
231
|
+
return iter(self.files)
|
|
232
|
+
|
|
233
|
+
def items(self):
|
|
234
|
+
"""
|
|
235
|
+
Return a list of tuples, with each tuple (filename, array in file).
|
|
236
|
+
|
|
237
|
+
"""
|
|
238
|
+
return [(f, self[f]) for f in self.files]
|
|
239
|
+
|
|
240
|
+
def iteritems(self):
|
|
241
|
+
"""Generator that returns tuples (filename, array in file)."""
|
|
242
|
+
for f in self.files:
|
|
243
|
+
yield (f, self[f])
|
|
244
|
+
|
|
245
|
+
def keys(self):
|
|
246
|
+
"""Return files in the archive with a ``.npy`` extension."""
|
|
247
|
+
return self.files
|
|
248
|
+
|
|
249
|
+
def iterkeys(self):
|
|
250
|
+
"""Return an iterator over the files in the archive."""
|
|
251
|
+
return self.__iter__()
|
|
252
|
+
|
|
253
|
+
def __contains__(self, key):
|
|
254
|
+
return self.files.__contains__(key)
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
def load(file, mmap_mode=None, allow_pickle=True, fix_imports=True,
|
|
258
|
+
encoding='ASCII'):
|
|
259
|
+
"""
|
|
260
|
+
Load arrays or pickled objects from ``.npy``, ``.npz`` or pickled files.
|
|
261
|
+
|
|
262
|
+
Parameters
|
|
263
|
+
----------
|
|
264
|
+
file : file-like object or string
|
|
265
|
+
The file to read. File-like objects must support the
|
|
266
|
+
``seek()`` and ``read()`` methods. Pickled files require that the
|
|
267
|
+
file-like object support the ``readline()`` method as well.
|
|
268
|
+
mmap_mode : {None, 'r+', 'r', 'w+', 'c'}, optional
|
|
269
|
+
If not None, then memory-map the file, using the given mode (see
|
|
270
|
+
`numpy.memmap` for a detailed description of the modes). A
|
|
271
|
+
memory-mapped array is kept on disk. However, it can be accessed
|
|
272
|
+
and sliced like any ndarray. Memory mapping is especially useful
|
|
273
|
+
for accessing small fragments of large files without reading the
|
|
274
|
+
entire file into memory.
|
|
275
|
+
allow_pickle : bool, optional
|
|
276
|
+
Allow loading pickled object arrays stored in npy files. Reasons for
|
|
277
|
+
disallowing pickles include security, as loading pickled data can
|
|
278
|
+
execute arbitrary code. If pickles are disallowed, loading object
|
|
279
|
+
arrays will fail.
|
|
280
|
+
Default: True
|
|
281
|
+
fix_imports : bool, optional
|
|
282
|
+
Only useful when loading Python 2 generated pickled files on Python 3,
|
|
283
|
+
which includes npy/npz files containing object arrays. If `fix_imports`
|
|
284
|
+
is True, pickle will try to map the old Python 2 names to the new names
|
|
285
|
+
used in Python 3.
|
|
286
|
+
encoding : str, optional
|
|
287
|
+
What encoding to use when reading Python 2 strings. Only useful when
|
|
288
|
+
loading Python 2 generated pickled files on Python 3, which includes
|
|
289
|
+
npy/npz files containing object arrays. Values other than 'latin1',
|
|
290
|
+
'ASCII', and 'bytes' are not allowed, as they can corrupt numerical
|
|
291
|
+
data. Default: 'ASCII'
|
|
292
|
+
|
|
293
|
+
Returns
|
|
294
|
+
-------
|
|
295
|
+
result : array, tuple, dict, etc.
|
|
296
|
+
Data stored in the file. For ``.npz`` files, the returned instance
|
|
297
|
+
of NpzFile class must be closed to avoid leaking file descriptors.
|
|
298
|
+
|
|
299
|
+
Raises
|
|
300
|
+
------
|
|
301
|
+
IOError
|
|
302
|
+
If the input file does not exist or cannot be read.
|
|
303
|
+
ValueError
|
|
304
|
+
The file contains an object array, but allow_pickle=False given.
|
|
305
|
+
|
|
306
|
+
See Also
|
|
307
|
+
--------
|
|
308
|
+
save, savez, savez_compressed, loadtxt
|
|
309
|
+
memmap : Create a memory-map to an array stored in a file on disk.
|
|
310
|
+
|
|
311
|
+
Notes
|
|
312
|
+
-----
|
|
313
|
+
- If the file contains pickle data, then whatever object is stored
|
|
314
|
+
in the pickle is returned.
|
|
315
|
+
- If the file is a ``.npy`` file, then a single array is returned.
|
|
316
|
+
- If the file is a ``.npz`` file, then a dictionary-like object is
|
|
317
|
+
returned, containing ``{filename: array}`` key-value pairs, one for
|
|
318
|
+
each file in the archive.
|
|
319
|
+
- If the file is a ``.npz`` file, the returned value supports the
|
|
320
|
+
context manager protocol in a similar fashion to the open function::
|
|
321
|
+
|
|
322
|
+
with load('foo.npz') as data:
|
|
323
|
+
a = data['a']
|
|
324
|
+
|
|
325
|
+
The underlying file descriptor is closed when exiting the 'with'
|
|
326
|
+
block.
|
|
327
|
+
|
|
328
|
+
Examples
|
|
329
|
+
--------
|
|
330
|
+
Store data to disk, and load it again:
|
|
331
|
+
|
|
332
|
+
>>> np.save('/tmp/123', np.array([[1, 2, 3], [4, 5, 6]]))
|
|
333
|
+
>>> np.load('/tmp/123.npy')
|
|
334
|
+
array([[1, 2, 3],
|
|
335
|
+
[4, 5, 6]])
|
|
336
|
+
|
|
337
|
+
Store compressed data to disk, and load it again:
|
|
338
|
+
|
|
339
|
+
>>> a=np.array([[1, 2, 3], [4, 5, 6]])
|
|
340
|
+
>>> b=np.array([1, 2])
|
|
341
|
+
>>> np.savez('/tmp/123.npz', a=a, b=b)
|
|
342
|
+
>>> data = np.load('/tmp/123.npz')
|
|
343
|
+
>>> data['a']
|
|
344
|
+
array([[1, 2, 3],
|
|
345
|
+
[4, 5, 6]])
|
|
346
|
+
>>> data['b']
|
|
347
|
+
array([1, 2])
|
|
348
|
+
>>> data.close()
|
|
349
|
+
|
|
350
|
+
Mem-map the stored array, and then access the second row
|
|
351
|
+
directly from disk:
|
|
352
|
+
|
|
353
|
+
>>> X = np.load('/tmp/123.npy', mmap_mode='r')
|
|
354
|
+
>>> X[1, :]
|
|
355
|
+
memmap([4, 5, 6])
|
|
356
|
+
|
|
357
|
+
"""
|
|
358
|
+
import gzip
|
|
359
|
+
|
|
360
|
+
own_fid = False
|
|
361
|
+
if isinstance(file, basestring):
|
|
362
|
+
fid = open(file, "rb")
|
|
363
|
+
own_fid = True
|
|
364
|
+
else:
|
|
365
|
+
fid = file
|
|
366
|
+
|
|
367
|
+
if encoding not in ('ASCII', 'latin1', 'bytes'):
|
|
368
|
+
# The 'encoding' value for pickle also affects what encoding
|
|
369
|
+
# the serialized binary data of Numpy arrays is loaded
|
|
370
|
+
# in. Pickle does not pass on the encoding information to
|
|
371
|
+
# Numpy. The unpickling code in numpy.core.multiarray is
|
|
372
|
+
# written to assume that unicode data appearing where binary
|
|
373
|
+
# should be is in 'latin1'. 'bytes' is also safe, as is 'ASCII'.
|
|
374
|
+
#
|
|
375
|
+
# Other encoding values can corrupt binary data, and we
|
|
376
|
+
# purposefully disallow them. For the same reason, the errors=
|
|
377
|
+
# argument is not exposed, as values other than 'strict'
|
|
378
|
+
# result can similarly silently corrupt numerical data.
|
|
379
|
+
raise ValueError("encoding must be 'ASCII', 'latin1', or 'bytes'")
|
|
380
|
+
|
|
381
|
+
if sys.version_info[0] >= 3:
|
|
382
|
+
pickle_kwargs = dict(encoding=encoding, fix_imports=fix_imports)
|
|
383
|
+
else:
|
|
384
|
+
# Nothing to do on Python 2
|
|
385
|
+
pickle_kwargs = {}
|
|
386
|
+
|
|
387
|
+
try:
|
|
388
|
+
# Code to distinguish from NumPy binary files and pickles.
|
|
389
|
+
_ZIP_PREFIX = asbytes('PK\x03\x04')
|
|
390
|
+
N = len(format.MAGIC_PREFIX)
|
|
391
|
+
magic = fid.read(N)
|
|
392
|
+
fid.seek(-N, 1) # back-up
|
|
393
|
+
if magic.startswith(_ZIP_PREFIX):
|
|
394
|
+
# zip-file (assume .npz)
|
|
395
|
+
# Transfer file ownership to NpzFile
|
|
396
|
+
tmp = own_fid
|
|
397
|
+
own_fid = False
|
|
398
|
+
return NpzFile(fid, own_fid=tmp, allow_pickle=allow_pickle,
|
|
399
|
+
pickle_kwargs=pickle_kwargs)
|
|
400
|
+
elif magic == format.MAGIC_PREFIX:
|
|
401
|
+
# .npy file
|
|
402
|
+
if mmap_mode:
|
|
403
|
+
return format.open_memmap(file, mode=mmap_mode)
|
|
404
|
+
else:
|
|
405
|
+
return format.read_array(fid, allow_pickle=allow_pickle,
|
|
406
|
+
pickle_kwargs=pickle_kwargs)
|
|
407
|
+
else:
|
|
408
|
+
# Try a pickle
|
|
409
|
+
if not allow_pickle:
|
|
410
|
+
raise ValueError("allow_pickle=False, but file does not contain "
|
|
411
|
+
"non-pickled data")
|
|
412
|
+
try:
|
|
413
|
+
return pickle.load(fid, **pickle_kwargs)
|
|
414
|
+
except:
|
|
415
|
+
raise IOError(
|
|
416
|
+
"Failed to interpret file %s as a pickle" % repr(file))
|
|
417
|
+
finally:
|
|
418
|
+
if own_fid:
|
|
419
|
+
fid.close()
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
def save(file, arr, allow_pickle=True, fix_imports=True):
|
|
423
|
+
"""
|
|
424
|
+
Save an array to a binary file in NumPy ``.npy`` format.
|
|
425
|
+
|
|
426
|
+
Parameters
|
|
427
|
+
----------
|
|
428
|
+
file : file or str
|
|
429
|
+
File or filename to which the data is saved. If file is a file-object,
|
|
430
|
+
then the filename is unchanged. If file is a string, a ``.npy``
|
|
431
|
+
extension will be appended to the file name if it does not already
|
|
432
|
+
have one.
|
|
433
|
+
allow_pickle : bool, optional
|
|
434
|
+
Allow saving object arrays using Python pickles. Reasons for disallowing
|
|
435
|
+
pickles include security (loading pickled data can execute arbitrary
|
|
436
|
+
code) and portability (pickled objects may not be loadable on different
|
|
437
|
+
Python installations, for example if the stored objects require libraries
|
|
438
|
+
that are not available, and not all pickled data is compatible between
|
|
439
|
+
Python 2 and Python 3).
|
|
440
|
+
Default: True
|
|
441
|
+
fix_imports : bool, optional
|
|
442
|
+
Only useful in forcing objects in object arrays on Python 3 to be
|
|
443
|
+
pickled in a Python 2 compatible way. If `fix_imports` is True, pickle
|
|
444
|
+
will try to map the new Python 3 names to the old module names used in
|
|
445
|
+
Python 2, so that the pickle data stream is readable with Python 2.
|
|
446
|
+
arr : array_like
|
|
447
|
+
Array data to be saved.
|
|
448
|
+
|
|
449
|
+
See Also
|
|
450
|
+
--------
|
|
451
|
+
savez : Save several arrays into a ``.npz`` archive
|
|
452
|
+
savetxt, load
|
|
453
|
+
|
|
454
|
+
Notes
|
|
455
|
+
-----
|
|
456
|
+
For a description of the ``.npy`` format, see the module docstring
|
|
457
|
+
of `numpy.lib.format` or the Numpy Enhancement Proposal
|
|
458
|
+
http://docs.scipy.org/doc/numpy/neps/npy-format.html
|
|
459
|
+
|
|
460
|
+
Examples
|
|
461
|
+
--------
|
|
462
|
+
>>> from tempfile import TemporaryFile
|
|
463
|
+
>>> outfile = TemporaryFile()
|
|
464
|
+
|
|
465
|
+
>>> x = np.arange(10)
|
|
466
|
+
>>> np.save(outfile, x)
|
|
467
|
+
|
|
468
|
+
>>> outfile.seek(0) # Only needed here to simulate closing & reopening file
|
|
469
|
+
>>> np.load(outfile)
|
|
470
|
+
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
|
|
471
|
+
|
|
472
|
+
"""
|
|
473
|
+
own_fid = False
|
|
474
|
+
if isinstance(file, basestring):
|
|
475
|
+
if not file.endswith('.npy'):
|
|
476
|
+
file = file + '.npy'
|
|
477
|
+
fid = open(file, "wb")
|
|
478
|
+
own_fid = True
|
|
479
|
+
else:
|
|
480
|
+
fid = file
|
|
481
|
+
|
|
482
|
+
if sys.version_info[0] >= 3:
|
|
483
|
+
pickle_kwargs = dict(fix_imports=fix_imports)
|
|
484
|
+
else:
|
|
485
|
+
# Nothing to do on Python 2
|
|
486
|
+
pickle_kwargs = None
|
|
487
|
+
|
|
488
|
+
try:
|
|
489
|
+
arr = np.asanyarray(arr)
|
|
490
|
+
format.write_array(fid, arr, allow_pickle=allow_pickle,
|
|
491
|
+
pickle_kwargs=pickle_kwargs)
|
|
492
|
+
finally:
|
|
493
|
+
if own_fid:
|
|
494
|
+
fid.close()
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
def savez(file, *args, **kwds):
|
|
498
|
+
"""
|
|
499
|
+
Save several arrays into a single file in uncompressed ``.npz`` format.
|
|
500
|
+
|
|
501
|
+
If arguments are passed in with no keywords, the corresponding variable
|
|
502
|
+
names, in the ``.npz`` file, are 'arr_0', 'arr_1', etc. If keyword
|
|
503
|
+
arguments are given, the corresponding variable names, in the ``.npz``
|
|
504
|
+
file will match the keyword names.
|
|
505
|
+
|
|
506
|
+
Parameters
|
|
507
|
+
----------
|
|
508
|
+
file : str or file
|
|
509
|
+
Either the file name (string) or an open file (file-like object)
|
|
510
|
+
where the data will be saved. If file is a string, the ``.npz``
|
|
511
|
+
extension will be appended to the file name if it is not already there.
|
|
512
|
+
args : Arguments, optional
|
|
513
|
+
Arrays to save to the file. Since it is not possible for Python to
|
|
514
|
+
know the names of the arrays outside `savez`, the arrays will be saved
|
|
515
|
+
with names "arr_0", "arr_1", and so on. These arguments can be any
|
|
516
|
+
expression.
|
|
517
|
+
kwds : Keyword arguments, optional
|
|
518
|
+
Arrays to save to the file. Arrays will be saved in the file with the
|
|
519
|
+
keyword names.
|
|
520
|
+
|
|
521
|
+
Returns
|
|
522
|
+
-------
|
|
523
|
+
None
|
|
524
|
+
|
|
525
|
+
See Also
|
|
526
|
+
--------
|
|
527
|
+
save : Save a single array to a binary file in NumPy format.
|
|
528
|
+
savetxt : Save an array to a file as plain text.
|
|
529
|
+
savez_compressed : Save several arrays into a compressed ``.npz`` archive
|
|
530
|
+
|
|
531
|
+
Notes
|
|
532
|
+
-----
|
|
533
|
+
The ``.npz`` file format is a zipped archive of files named after the
|
|
534
|
+
variables they contain. The archive is not compressed and each file
|
|
535
|
+
in the archive contains one variable in ``.npy`` format. For a
|
|
536
|
+
description of the ``.npy`` format, see `numpy.lib.format` or the
|
|
537
|
+
Numpy Enhancement Proposal
|
|
538
|
+
http://docs.scipy.org/doc/numpy/neps/npy-format.html
|
|
539
|
+
|
|
540
|
+
When opening the saved ``.npz`` file with `load` a `NpzFile` object is
|
|
541
|
+
returned. This is a dictionary-like object which can be queried for
|
|
542
|
+
its list of arrays (with the ``.files`` attribute), and for the arrays
|
|
543
|
+
themselves.
|
|
544
|
+
|
|
545
|
+
Examples
|
|
546
|
+
--------
|
|
547
|
+
>>> from tempfile import TemporaryFile
|
|
548
|
+
>>> outfile = TemporaryFile()
|
|
549
|
+
>>> x = np.arange(10)
|
|
550
|
+
>>> y = np.sin(x)
|
|
551
|
+
|
|
552
|
+
Using `savez` with \\*args, the arrays are saved with default names.
|
|
553
|
+
|
|
554
|
+
>>> np.savez(outfile, x, y)
|
|
555
|
+
>>> outfile.seek(0) # Only needed here to simulate closing & reopening file
|
|
556
|
+
>>> npzfile = np.load(outfile)
|
|
557
|
+
>>> npzfile.files
|
|
558
|
+
['arr_1', 'arr_0']
|
|
559
|
+
>>> npzfile['arr_0']
|
|
560
|
+
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
|
|
561
|
+
|
|
562
|
+
Using `savez` with \\**kwds, the arrays are saved with the keyword names.
|
|
563
|
+
|
|
564
|
+
>>> outfile = TemporaryFile()
|
|
565
|
+
>>> np.savez(outfile, x=x, y=y)
|
|
566
|
+
>>> outfile.seek(0)
|
|
567
|
+
>>> npzfile = np.load(outfile)
|
|
568
|
+
>>> npzfile.files
|
|
569
|
+
['y', 'x']
|
|
570
|
+
>>> npzfile['x']
|
|
571
|
+
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
|
|
572
|
+
|
|
573
|
+
"""
|
|
574
|
+
_savez(file, args, kwds, False)
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
def savez_compressed(file, *args, **kwds):
|
|
578
|
+
"""
|
|
579
|
+
Save several arrays into a single file in compressed ``.npz`` format.
|
|
580
|
+
|
|
581
|
+
If keyword arguments are given, then filenames are taken from the keywords.
|
|
582
|
+
If arguments are passed in with no keywords, then stored file names are
|
|
583
|
+
arr_0, arr_1, etc.
|
|
584
|
+
|
|
585
|
+
Parameters
|
|
586
|
+
----------
|
|
587
|
+
file : str
|
|
588
|
+
File name of ``.npz`` file.
|
|
589
|
+
args : Arguments
|
|
590
|
+
Function arguments.
|
|
591
|
+
kwds : Keyword arguments
|
|
592
|
+
Keywords.
|
|
593
|
+
|
|
594
|
+
See Also
|
|
595
|
+
--------
|
|
596
|
+
numpy.savez : Save several arrays into an uncompressed ``.npz`` file format
|
|
597
|
+
numpy.load : Load the files created by savez_compressed.
|
|
598
|
+
|
|
599
|
+
"""
|
|
600
|
+
_savez(file, args, kwds, True)
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
def _savez(file, args, kwds, compress, allow_pickle=True, pickle_kwargs=None):
|
|
604
|
+
# Import is postponed to here since zipfile depends on gzip, an optional
|
|
605
|
+
# component of the so-called standard library.
|
|
606
|
+
import zipfile
|
|
607
|
+
# Import deferred for startup time improvement
|
|
608
|
+
import tempfile
|
|
609
|
+
|
|
610
|
+
if isinstance(file, basestring):
|
|
611
|
+
if not file.endswith('.npz'):
|
|
612
|
+
file = file + '.npz'
|
|
613
|
+
|
|
614
|
+
namedict = kwds
|
|
615
|
+
for i, val in enumerate(args):
|
|
616
|
+
key = 'arr_%d' % i
|
|
617
|
+
if key in namedict.keys():
|
|
618
|
+
raise ValueError(
|
|
619
|
+
"Cannot use un-named variables and keyword %s" % key)
|
|
620
|
+
namedict[key] = val
|
|
621
|
+
|
|
622
|
+
if compress:
|
|
623
|
+
compression = zipfile.ZIP_DEFLATED
|
|
624
|
+
else:
|
|
625
|
+
compression = zipfile.ZIP_STORED
|
|
626
|
+
|
|
627
|
+
zipf = zipfile_factory(file, mode="w", compression=compression)
|
|
628
|
+
|
|
629
|
+
# Stage arrays in a temporary file on disk, before writing to zip.
|
|
630
|
+
fd, tmpfile = tempfile.mkstemp(suffix='-numpy.npy')
|
|
631
|
+
os.close(fd)
|
|
632
|
+
try:
|
|
633
|
+
for key, val in namedict.items():
|
|
634
|
+
fname = key + '.npy'
|
|
635
|
+
fid = open(tmpfile, 'wb')
|
|
636
|
+
try:
|
|
637
|
+
format.write_array(fid, np.asanyarray(val),
|
|
638
|
+
allow_pickle=allow_pickle,
|
|
639
|
+
pickle_kwargs=pickle_kwargs)
|
|
640
|
+
fid.close()
|
|
641
|
+
fid = None
|
|
642
|
+
zipf.write(tmpfile, arcname=fname)
|
|
643
|
+
finally:
|
|
644
|
+
if fid:
|
|
645
|
+
fid.close()
|
|
646
|
+
finally:
|
|
647
|
+
os.remove(tmpfile)
|
|
648
|
+
|
|
649
|
+
zipf.close()
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
def _getconv(dtype):
|
|
653
|
+
""" Find the correct dtype converter. Adapted from matplotlib """
|
|
654
|
+
|
|
655
|
+
def floatconv(x):
|
|
656
|
+
x.lower()
|
|
657
|
+
if b'0x' in x:
|
|
658
|
+
return float.fromhex(asstr(x))
|
|
659
|
+
return float(x)
|
|
660
|
+
|
|
661
|
+
typ = dtype.type
|
|
662
|
+
if issubclass(typ, np.bool_):
|
|
663
|
+
return lambda x: bool(int(x))
|
|
664
|
+
if issubclass(typ, np.uint64):
|
|
665
|
+
return np.uint64
|
|
666
|
+
if issubclass(typ, np.int64):
|
|
667
|
+
return np.int64
|
|
668
|
+
if issubclass(typ, np.integer):
|
|
669
|
+
return lambda x: int(float(x))
|
|
670
|
+
elif issubclass(typ, np.floating):
|
|
671
|
+
return floatconv
|
|
672
|
+
elif issubclass(typ, np.complex):
|
|
673
|
+
return lambda x: complex(asstr(x))
|
|
674
|
+
elif issubclass(typ, np.bytes_):
|
|
675
|
+
return bytes
|
|
676
|
+
else:
|
|
677
|
+
return str
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
def loadtxt(fname, dtype=float, comments='#', delimiter=None,
|
|
681
|
+
converters=None, skiprows=0, usecols=None, unpack=False,
|
|
682
|
+
ndmin=0):
|
|
683
|
+
"""
|
|
684
|
+
Load data from a text file.
|
|
685
|
+
|
|
686
|
+
Each row in the text file must have the same number of values.
|
|
687
|
+
|
|
688
|
+
Parameters
|
|
689
|
+
----------
|
|
690
|
+
fname : file or str
|
|
691
|
+
File, filename, or generator to read. If the filename extension is
|
|
692
|
+
``.gz`` or ``.bz2``, the file is first decompressed. Note that
|
|
693
|
+
generators should return byte strings for Python 3k.
|
|
694
|
+
dtype : data-type, optional
|
|
695
|
+
Data-type of the resulting array; default: float. If this is a
|
|
696
|
+
structured data-type, the resulting array will be 1-dimensional, and
|
|
697
|
+
each row will be interpreted as an element of the array. In this
|
|
698
|
+
case, the number of columns used must match the number of fields in
|
|
699
|
+
the data-type.
|
|
700
|
+
comments : str or sequence, optional
|
|
701
|
+
The characters or list of characters used to indicate the start of a
|
|
702
|
+
comment;
|
|
703
|
+
default: '#'.
|
|
704
|
+
delimiter : str, optional
|
|
705
|
+
The string used to separate values. By default, this is any
|
|
706
|
+
whitespace.
|
|
707
|
+
converters : dict, optional
|
|
708
|
+
A dictionary mapping column number to a function that will convert
|
|
709
|
+
that column to a float. E.g., if column 0 is a date string:
|
|
710
|
+
``converters = {0: datestr2num}``. Converters can also be used to
|
|
711
|
+
provide a default value for missing data (but see also `genfromtxt`):
|
|
712
|
+
``converters = {3: lambda s: float(s.strip() or 0)}``. Default: None.
|
|
713
|
+
skiprows : int, optional
|
|
714
|
+
Skip the first `skiprows` lines; default: 0.
|
|
715
|
+
usecols : sequence, optional
|
|
716
|
+
Which columns to read, with 0 being the first. For example,
|
|
717
|
+
``usecols = (1,4,5)`` will extract the 2nd, 5th and 6th columns.
|
|
718
|
+
The default, None, results in all columns being read.
|
|
719
|
+
unpack : bool, optional
|
|
720
|
+
If True, the returned array is transposed, so that arguments may be
|
|
721
|
+
unpacked using ``x, y, z = loadtxt(...)``. When used with a structured
|
|
722
|
+
data-type, arrays are returned for each field. Default is False.
|
|
723
|
+
ndmin : int, optional
|
|
724
|
+
The returned array will have at least `ndmin` dimensions.
|
|
725
|
+
Otherwise mono-dimensional axes will be squeezed.
|
|
726
|
+
Legal values: 0 (default), 1 or 2.
|
|
727
|
+
|
|
728
|
+
.. versionadded:: 1.6.0
|
|
729
|
+
|
|
730
|
+
Returns
|
|
731
|
+
-------
|
|
732
|
+
out : ndarray
|
|
733
|
+
Data read from the text file.
|
|
734
|
+
|
|
735
|
+
See Also
|
|
736
|
+
--------
|
|
737
|
+
load, fromstring, fromregex
|
|
738
|
+
genfromtxt : Load data with missing values handled as specified.
|
|
739
|
+
scipy.io.loadmat : reads MATLAB data files
|
|
740
|
+
|
|
741
|
+
Notes
|
|
742
|
+
-----
|
|
743
|
+
This function aims to be a fast reader for simply formatted files. The
|
|
744
|
+
`genfromtxt` function provides more sophisticated handling of, e.g.,
|
|
745
|
+
lines with missing values.
|
|
746
|
+
|
|
747
|
+
.. versionadded:: 1.10.0
|
|
748
|
+
|
|
749
|
+
The strings produced by the Python float.hex method can be used as
|
|
750
|
+
input for floats.
|
|
751
|
+
|
|
752
|
+
Examples
|
|
753
|
+
--------
|
|
754
|
+
>>> from io import StringIO # StringIO behaves like a file object
|
|
755
|
+
>>> c = StringIO("0 1\\n2 3")
|
|
756
|
+
>>> np.loadtxt(c)
|
|
757
|
+
array([[ 0., 1.],
|
|
758
|
+
[ 2., 3.]])
|
|
759
|
+
|
|
760
|
+
>>> d = StringIO("M 21 72\\nF 35 58")
|
|
761
|
+
>>> np.loadtxt(d, dtype={'names': ('gender', 'age', 'weight'),
|
|
762
|
+
... 'formats': ('S1', 'i4', 'f4')})
|
|
763
|
+
array([('M', 21, 72.0), ('F', 35, 58.0)],
|
|
764
|
+
dtype=[('gender', '|S1'), ('age', '<i4'), ('weight', '<f4')])
|
|
765
|
+
|
|
766
|
+
>>> c = StringIO("1,0,2\\n3,0,4")
|
|
767
|
+
>>> x, y = np.loadtxt(c, delimiter=',', usecols=(0, 2), unpack=True)
|
|
768
|
+
>>> x
|
|
769
|
+
array([ 1., 3.])
|
|
770
|
+
>>> y
|
|
771
|
+
array([ 2., 4.])
|
|
772
|
+
|
|
773
|
+
"""
|
|
774
|
+
# Type conversions for Py3 convenience
|
|
775
|
+
if comments is not None:
|
|
776
|
+
if isinstance(comments, (basestring, bytes)):
|
|
777
|
+
comments = [asbytes(comments)]
|
|
778
|
+
else:
|
|
779
|
+
comments = [asbytes(comment) for comment in comments]
|
|
780
|
+
|
|
781
|
+
# Compile regex for comments beforehand
|
|
782
|
+
comments = (re.escape(comment) for comment in comments)
|
|
783
|
+
regex_comments = re.compile(asbytes('|').join(comments))
|
|
784
|
+
user_converters = converters
|
|
785
|
+
if delimiter is not None:
|
|
786
|
+
delimiter = asbytes(delimiter)
|
|
787
|
+
if usecols is not None:
|
|
788
|
+
usecols = list(usecols)
|
|
789
|
+
|
|
790
|
+
fown = False
|
|
791
|
+
try:
|
|
792
|
+
if _is_string_like(fname):
|
|
793
|
+
fown = True
|
|
794
|
+
if fname.endswith('.gz'):
|
|
795
|
+
import gzip
|
|
796
|
+
fh = iter(gzip.GzipFile(fname))
|
|
797
|
+
elif fname.endswith('.bz2'):
|
|
798
|
+
import bz2
|
|
799
|
+
fh = iter(bz2.BZ2File(fname))
|
|
800
|
+
elif sys.version_info[0] == 2:
|
|
801
|
+
fh = iter(open(fname, 'U'))
|
|
802
|
+
else:
|
|
803
|
+
fh = iter(open(fname))
|
|
804
|
+
else:
|
|
805
|
+
fh = iter(fname)
|
|
806
|
+
except TypeError:
|
|
807
|
+
raise ValueError('fname must be a string, file handle, or generator')
|
|
808
|
+
X = []
|
|
809
|
+
|
|
810
|
+
def flatten_dtype(dt):
|
|
811
|
+
"""Unpack a structured data-type, and produce re-packing info."""
|
|
812
|
+
if dt.names is None:
|
|
813
|
+
# If the dtype is flattened, return.
|
|
814
|
+
# If the dtype has a shape, the dtype occurs
|
|
815
|
+
# in the list more than once.
|
|
816
|
+
shape = dt.shape
|
|
817
|
+
if len(shape) == 0:
|
|
818
|
+
return ([dt.base], None)
|
|
819
|
+
else:
|
|
820
|
+
packing = [(shape[-1], list)]
|
|
821
|
+
if len(shape) > 1:
|
|
822
|
+
for dim in dt.shape[-2::-1]:
|
|
823
|
+
packing = [(dim*packing[0][0], packing*dim)]
|
|
824
|
+
return ([dt.base] * int(np.prod(dt.shape)), packing)
|
|
825
|
+
else:
|
|
826
|
+
types = []
|
|
827
|
+
packing = []
|
|
828
|
+
for field in dt.names:
|
|
829
|
+
tp, bytes = dt.fields[field]
|
|
830
|
+
flat_dt, flat_packing = flatten_dtype(tp)
|
|
831
|
+
types.extend(flat_dt)
|
|
832
|
+
# Avoid extra nesting for subarrays
|
|
833
|
+
if len(tp.shape) > 0:
|
|
834
|
+
packing.extend(flat_packing)
|
|
835
|
+
else:
|
|
836
|
+
packing.append((len(flat_dt), flat_packing))
|
|
837
|
+
return (types, packing)
|
|
838
|
+
|
|
839
|
+
def pack_items(items, packing):
|
|
840
|
+
"""Pack items into nested lists based on re-packing info."""
|
|
841
|
+
if packing is None:
|
|
842
|
+
return items[0]
|
|
843
|
+
elif packing is tuple:
|
|
844
|
+
return tuple(items)
|
|
845
|
+
elif packing is list:
|
|
846
|
+
return list(items)
|
|
847
|
+
else:
|
|
848
|
+
start = 0
|
|
849
|
+
ret = []
|
|
850
|
+
for length, subpacking in packing:
|
|
851
|
+
ret.append(pack_items(items[start:start+length], subpacking))
|
|
852
|
+
start += length
|
|
853
|
+
return tuple(ret)
|
|
854
|
+
|
|
855
|
+
def split_line(line):
|
|
856
|
+
"""Chop off comments, strip, and split at delimiter.
|
|
857
|
+
|
|
858
|
+
Note that although the file is opened as text, this function
|
|
859
|
+
returns bytes.
|
|
860
|
+
|
|
861
|
+
"""
|
|
862
|
+
line = asbytes(line)
|
|
863
|
+
if comments is not None:
|
|
864
|
+
line = regex_comments.split(asbytes(line), maxsplit=1)[0]
|
|
865
|
+
line = line.strip(asbytes('\r\n'))
|
|
866
|
+
if line:
|
|
867
|
+
return line.split(delimiter)
|
|
868
|
+
else:
|
|
869
|
+
return []
|
|
870
|
+
|
|
871
|
+
try:
|
|
872
|
+
# Make sure we're dealing with a proper dtype
|
|
873
|
+
dtype = np.dtype(dtype)
|
|
874
|
+
defconv = _getconv(dtype)
|
|
875
|
+
|
|
876
|
+
# Skip the first `skiprows` lines
|
|
877
|
+
for i in range(skiprows):
|
|
878
|
+
next(fh)
|
|
879
|
+
|
|
880
|
+
# Read until we find a line with some values, and use
|
|
881
|
+
# it to estimate the number of columns, N.
|
|
882
|
+
first_vals = None
|
|
883
|
+
try:
|
|
884
|
+
while not first_vals:
|
|
885
|
+
first_line = next(fh)
|
|
886
|
+
first_vals = split_line(first_line)
|
|
887
|
+
except StopIteration:
|
|
888
|
+
# End of lines reached
|
|
889
|
+
first_line = ''
|
|
890
|
+
first_vals = []
|
|
891
|
+
warnings.warn('loadtxt: Empty input file: "%s"' % fname)
|
|
892
|
+
N = len(usecols or first_vals)
|
|
893
|
+
|
|
894
|
+
dtype_types, packing = flatten_dtype(dtype)
|
|
895
|
+
if len(dtype_types) > 1:
|
|
896
|
+
# We're dealing with a structured array, each field of
|
|
897
|
+
# the dtype matches a column
|
|
898
|
+
converters = [_getconv(dt) for dt in dtype_types]
|
|
899
|
+
else:
|
|
900
|
+
# All fields have the same dtype
|
|
901
|
+
converters = [defconv for i in range(N)]
|
|
902
|
+
if N > 1:
|
|
903
|
+
packing = [(N, tuple)]
|
|
904
|
+
|
|
905
|
+
# By preference, use the converters specified by the user
|
|
906
|
+
for i, conv in (user_converters or {}).items():
|
|
907
|
+
if usecols:
|
|
908
|
+
try:
|
|
909
|
+
i = usecols.index(i)
|
|
910
|
+
except ValueError:
|
|
911
|
+
# Unused converter specified
|
|
912
|
+
continue
|
|
913
|
+
converters[i] = conv
|
|
914
|
+
|
|
915
|
+
# Parse each line, including the first
|
|
916
|
+
for i, line in enumerate(itertools.chain([first_line], fh)):
|
|
917
|
+
vals = split_line(line)
|
|
918
|
+
if len(vals) == 0:
|
|
919
|
+
continue
|
|
920
|
+
if usecols:
|
|
921
|
+
vals = [vals[i] for i in usecols]
|
|
922
|
+
if len(vals) != N:
|
|
923
|
+
line_num = i + skiprows + 1
|
|
924
|
+
raise ValueError("Wrong number of columns at line %d"
|
|
925
|
+
% line_num)
|
|
926
|
+
|
|
927
|
+
# Convert each value according to its column and store
|
|
928
|
+
items = [conv(val) for (conv, val) in zip(converters, vals)]
|
|
929
|
+
# Then pack it according to the dtype's nesting
|
|
930
|
+
items = pack_items(items, packing)
|
|
931
|
+
X.append(items)
|
|
932
|
+
finally:
|
|
933
|
+
if fown:
|
|
934
|
+
fh.close()
|
|
935
|
+
|
|
936
|
+
X = np.array(X, dtype)
|
|
937
|
+
# Multicolumn data are returned with shape (1, N, M), i.e.
|
|
938
|
+
# (1, 1, M) for a single row - remove the singleton dimension there
|
|
939
|
+
if X.ndim == 3 and X.shape[:2] == (1, 1):
|
|
940
|
+
X.shape = (1, -1)
|
|
941
|
+
|
|
942
|
+
# Verify that the array has at least dimensions `ndmin`.
|
|
943
|
+
# Check correctness of the values of `ndmin`
|
|
944
|
+
if ndmin not in [0, 1, 2]:
|
|
945
|
+
raise ValueError('Illegal value of ndmin keyword: %s' % ndmin)
|
|
946
|
+
# Tweak the size and shape of the arrays - remove extraneous dimensions
|
|
947
|
+
if X.ndim > ndmin:
|
|
948
|
+
X = np.squeeze(X)
|
|
949
|
+
# and ensure we have the minimum number of dimensions asked for
|
|
950
|
+
# - has to be in this order for the odd case ndmin=1, X.squeeze().ndim=0
|
|
951
|
+
if X.ndim < ndmin:
|
|
952
|
+
if ndmin == 1:
|
|
953
|
+
X = np.atleast_1d(X)
|
|
954
|
+
elif ndmin == 2:
|
|
955
|
+
X = np.atleast_2d(X).T
|
|
956
|
+
|
|
957
|
+
if unpack:
|
|
958
|
+
if len(dtype_types) > 1:
|
|
959
|
+
# For structured arrays, return an array for each field.
|
|
960
|
+
return [X[field] for field in dtype.names]
|
|
961
|
+
else:
|
|
962
|
+
return X.T
|
|
963
|
+
else:
|
|
964
|
+
return X
|
|
965
|
+
|
|
966
|
+
|
|
967
|
+
def savetxt(fname, X, fmt='%.18e', delimiter=' ', newline='\n', header='',
|
|
968
|
+
footer='', comments='# '):
|
|
969
|
+
"""
|
|
970
|
+
Save an array to a text file.
|
|
971
|
+
|
|
972
|
+
Parameters
|
|
973
|
+
----------
|
|
974
|
+
fname : filename or file handle
|
|
975
|
+
If the filename ends in ``.gz``, the file is automatically saved in
|
|
976
|
+
compressed gzip format. `loadtxt` understands gzipped files
|
|
977
|
+
transparently.
|
|
978
|
+
X : array_like
|
|
979
|
+
Data to be saved to a text file.
|
|
980
|
+
fmt : str or sequence of strs, optional
|
|
981
|
+
A single format (%10.5f), a sequence of formats, or a
|
|
982
|
+
multi-format string, e.g. 'Iteration %d -- %10.5f', in which
|
|
983
|
+
case `delimiter` is ignored. For complex `X`, the legal options
|
|
984
|
+
for `fmt` are:
|
|
985
|
+
a) a single specifier, `fmt='%.4e'`, resulting in numbers formatted
|
|
986
|
+
like `' (%s+%sj)' % (fmt, fmt)`
|
|
987
|
+
b) a full string specifying every real and imaginary part, e.g.
|
|
988
|
+
`' %.4e %+.4j %.4e %+.4j %.4e %+.4j'` for 3 columns
|
|
989
|
+
c) a list of specifiers, one per column - in this case, the real
|
|
990
|
+
and imaginary part must have separate specifiers,
|
|
991
|
+
e.g. `['%.3e + %.3ej', '(%.15e%+.15ej)']` for 2 columns
|
|
992
|
+
delimiter : str, optional
|
|
993
|
+
String or character separating columns.
|
|
994
|
+
newline : str, optional
|
|
995
|
+
String or character separating lines.
|
|
996
|
+
|
|
997
|
+
.. versionadded:: 1.5.0
|
|
998
|
+
header : str, optional
|
|
999
|
+
String that will be written at the beginning of the file.
|
|
1000
|
+
|
|
1001
|
+
.. versionadded:: 1.7.0
|
|
1002
|
+
footer : str, optional
|
|
1003
|
+
String that will be written at the end of the file.
|
|
1004
|
+
|
|
1005
|
+
.. versionadded:: 1.7.0
|
|
1006
|
+
comments : str, optional
|
|
1007
|
+
String that will be prepended to the ``header`` and ``footer`` strings,
|
|
1008
|
+
to mark them as comments. Default: '# ', as expected by e.g.
|
|
1009
|
+
``numpy.loadtxt``.
|
|
1010
|
+
|
|
1011
|
+
.. versionadded:: 1.7.0
|
|
1012
|
+
|
|
1013
|
+
|
|
1014
|
+
See Also
|
|
1015
|
+
--------
|
|
1016
|
+
save : Save an array to a binary file in NumPy ``.npy`` format
|
|
1017
|
+
savez : Save several arrays into an uncompressed ``.npz`` archive
|
|
1018
|
+
savez_compressed : Save several arrays into a compressed ``.npz`` archive
|
|
1019
|
+
|
|
1020
|
+
Notes
|
|
1021
|
+
-----
|
|
1022
|
+
Further explanation of the `fmt` parameter
|
|
1023
|
+
(``%[flag]width[.precision]specifier``):
|
|
1024
|
+
|
|
1025
|
+
flags:
|
|
1026
|
+
``-`` : left justify
|
|
1027
|
+
|
|
1028
|
+
``+`` : Forces to precede result with + or -.
|
|
1029
|
+
|
|
1030
|
+
``0`` : Left pad the number with zeros instead of space (see width).
|
|
1031
|
+
|
|
1032
|
+
width:
|
|
1033
|
+
Minimum number of characters to be printed. The value is not truncated
|
|
1034
|
+
if it has more characters.
|
|
1035
|
+
|
|
1036
|
+
precision:
|
|
1037
|
+
- For integer specifiers (eg. ``d,i,o,x``), the minimum number of
|
|
1038
|
+
digits.
|
|
1039
|
+
- For ``e, E`` and ``f`` specifiers, the number of digits to print
|
|
1040
|
+
after the decimal point.
|
|
1041
|
+
- For ``g`` and ``G``, the maximum number of significant digits.
|
|
1042
|
+
- For ``s``, the maximum number of characters.
|
|
1043
|
+
|
|
1044
|
+
specifiers:
|
|
1045
|
+
``c`` : character
|
|
1046
|
+
|
|
1047
|
+
``d`` or ``i`` : signed decimal integer
|
|
1048
|
+
|
|
1049
|
+
``e`` or ``E`` : scientific notation with ``e`` or ``E``.
|
|
1050
|
+
|
|
1051
|
+
``f`` : decimal floating point
|
|
1052
|
+
|
|
1053
|
+
``g,G`` : use the shorter of ``e,E`` or ``f``
|
|
1054
|
+
|
|
1055
|
+
``o`` : signed octal
|
|
1056
|
+
|
|
1057
|
+
``s`` : string of characters
|
|
1058
|
+
|
|
1059
|
+
``u`` : unsigned decimal integer
|
|
1060
|
+
|
|
1061
|
+
``x,X`` : unsigned hexadecimal integer
|
|
1062
|
+
|
|
1063
|
+
This explanation of ``fmt`` is not complete, for an exhaustive
|
|
1064
|
+
specification see [1]_.
|
|
1065
|
+
|
|
1066
|
+
References
|
|
1067
|
+
----------
|
|
1068
|
+
.. [1] `Format Specification Mini-Language
|
|
1069
|
+
<http://docs.python.org/library/string.html#
|
|
1070
|
+
format-specification-mini-language>`_, Python Documentation.
|
|
1071
|
+
|
|
1072
|
+
Examples
|
|
1073
|
+
--------
|
|
1074
|
+
>>> x = y = z = np.arange(0.0,5.0,1.0)
|
|
1075
|
+
>>> np.savetxt('test.out', x, delimiter=',') # X is an array
|
|
1076
|
+
>>> np.savetxt('test.out', (x,y,z)) # x,y,z equal sized 1D arrays
|
|
1077
|
+
>>> np.savetxt('test.out', x, fmt='%1.4e') # use exponential notation
|
|
1078
|
+
|
|
1079
|
+
"""
|
|
1080
|
+
|
|
1081
|
+
# Py3 conversions first
|
|
1082
|
+
if isinstance(fmt, bytes):
|
|
1083
|
+
fmt = asstr(fmt)
|
|
1084
|
+
delimiter = asstr(delimiter)
|
|
1085
|
+
|
|
1086
|
+
own_fh = False
|
|
1087
|
+
if _is_string_like(fname):
|
|
1088
|
+
own_fh = True
|
|
1089
|
+
if fname.endswith('.gz'):
|
|
1090
|
+
import gzip
|
|
1091
|
+
fh = gzip.open(fname, 'wb')
|
|
1092
|
+
else:
|
|
1093
|
+
if sys.version_info[0] >= 3:
|
|
1094
|
+
fh = open(fname, 'wb')
|
|
1095
|
+
else:
|
|
1096
|
+
fh = open(fname, 'w')
|
|
1097
|
+
elif hasattr(fname, 'write'):
|
|
1098
|
+
fh = fname
|
|
1099
|
+
else:
|
|
1100
|
+
raise ValueError('fname must be a string or file handle')
|
|
1101
|
+
|
|
1102
|
+
try:
|
|
1103
|
+
X = np.asarray(X)
|
|
1104
|
+
|
|
1105
|
+
# Handle 1-dimensional arrays
|
|
1106
|
+
if X.ndim == 1:
|
|
1107
|
+
# Common case -- 1d array of numbers
|
|
1108
|
+
if X.dtype.names is None:
|
|
1109
|
+
X = np.atleast_2d(X).T
|
|
1110
|
+
ncol = 1
|
|
1111
|
+
|
|
1112
|
+
# Complex dtype -- each field indicates a separate column
|
|
1113
|
+
else:
|
|
1114
|
+
ncol = len(X.dtype.descr)
|
|
1115
|
+
else:
|
|
1116
|
+
ncol = X.shape[1]
|
|
1117
|
+
|
|
1118
|
+
iscomplex_X = np.iscomplexobj(X)
|
|
1119
|
+
# `fmt` can be a string with multiple insertion points or a
|
|
1120
|
+
# list of formats. E.g. '%10.5f\t%10d' or ('%10.5f', '$10d')
|
|
1121
|
+
if type(fmt) in (list, tuple):
|
|
1122
|
+
if len(fmt) != ncol:
|
|
1123
|
+
raise AttributeError('fmt has wrong shape. %s' % str(fmt))
|
|
1124
|
+
format = asstr(delimiter).join(map(asstr, fmt))
|
|
1125
|
+
elif isinstance(fmt, str):
|
|
1126
|
+
n_fmt_chars = fmt.count('%')
|
|
1127
|
+
error = ValueError('fmt has wrong number of %% formats: %s' % fmt)
|
|
1128
|
+
if n_fmt_chars == 1:
|
|
1129
|
+
if iscomplex_X:
|
|
1130
|
+
fmt = [' (%s+%sj)' % (fmt, fmt), ] * ncol
|
|
1131
|
+
else:
|
|
1132
|
+
fmt = [fmt, ] * ncol
|
|
1133
|
+
format = delimiter.join(fmt)
|
|
1134
|
+
elif iscomplex_X and n_fmt_chars != (2 * ncol):
|
|
1135
|
+
raise error
|
|
1136
|
+
elif ((not iscomplex_X) and n_fmt_chars != ncol):
|
|
1137
|
+
raise error
|
|
1138
|
+
else:
|
|
1139
|
+
format = fmt
|
|
1140
|
+
else:
|
|
1141
|
+
raise ValueError('invalid fmt: %r' % (fmt,))
|
|
1142
|
+
|
|
1143
|
+
if len(header) > 0:
|
|
1144
|
+
header = header.replace('\n', '\n' + comments)
|
|
1145
|
+
fh.write(asbytes(comments + header + newline))
|
|
1146
|
+
if iscomplex_X:
|
|
1147
|
+
for row in X:
|
|
1148
|
+
row2 = []
|
|
1149
|
+
for number in row:
|
|
1150
|
+
row2.append(number.real)
|
|
1151
|
+
row2.append(number.imag)
|
|
1152
|
+
fh.write(asbytes(format % tuple(row2) + newline))
|
|
1153
|
+
else:
|
|
1154
|
+
for row in X:
|
|
1155
|
+
try:
|
|
1156
|
+
fh.write(asbytes(format % tuple(row) + newline))
|
|
1157
|
+
except TypeError:
|
|
1158
|
+
raise TypeError("Mismatch between array dtype ('%s') and "
|
|
1159
|
+
"format specifier ('%s')"
|
|
1160
|
+
% (str(X.dtype), format))
|
|
1161
|
+
if len(footer) > 0:
|
|
1162
|
+
footer = footer.replace('\n', '\n' + comments)
|
|
1163
|
+
fh.write(asbytes(comments + footer + newline))
|
|
1164
|
+
finally:
|
|
1165
|
+
if own_fh:
|
|
1166
|
+
fh.close()
|
|
1167
|
+
|
|
1168
|
+
|
|
1169
|
+
def fromregex(file, regexp, dtype):
|
|
1170
|
+
"""
|
|
1171
|
+
Construct an array from a text file, using regular expression parsing.
|
|
1172
|
+
|
|
1173
|
+
The returned array is always a structured array, and is constructed from
|
|
1174
|
+
all matches of the regular expression in the file. Groups in the regular
|
|
1175
|
+
expression are converted to fields of the structured array.
|
|
1176
|
+
|
|
1177
|
+
Parameters
|
|
1178
|
+
----------
|
|
1179
|
+
file : str or file
|
|
1180
|
+
File name or file object to read.
|
|
1181
|
+
regexp : str or regexp
|
|
1182
|
+
Regular expression used to parse the file.
|
|
1183
|
+
Groups in the regular expression correspond to fields in the dtype.
|
|
1184
|
+
dtype : dtype or list of dtypes
|
|
1185
|
+
Dtype for the structured array.
|
|
1186
|
+
|
|
1187
|
+
Returns
|
|
1188
|
+
-------
|
|
1189
|
+
output : ndarray
|
|
1190
|
+
The output array, containing the part of the content of `file` that
|
|
1191
|
+
was matched by `regexp`. `output` is always a structured array.
|
|
1192
|
+
|
|
1193
|
+
Raises
|
|
1194
|
+
------
|
|
1195
|
+
TypeError
|
|
1196
|
+
When `dtype` is not a valid dtype for a structured array.
|
|
1197
|
+
|
|
1198
|
+
See Also
|
|
1199
|
+
--------
|
|
1200
|
+
fromstring, loadtxt
|
|
1201
|
+
|
|
1202
|
+
Notes
|
|
1203
|
+
-----
|
|
1204
|
+
Dtypes for structured arrays can be specified in several forms, but all
|
|
1205
|
+
forms specify at least the data type and field name. For details see
|
|
1206
|
+
`doc.structured_arrays`.
|
|
1207
|
+
|
|
1208
|
+
Examples
|
|
1209
|
+
--------
|
|
1210
|
+
>>> f = open('test.dat', 'w')
|
|
1211
|
+
>>> f.write("1312 foo\\n1534 bar\\n444 qux")
|
|
1212
|
+
>>> f.close()
|
|
1213
|
+
|
|
1214
|
+
>>> regexp = r"(\\d+)\\s+(...)" # match [digits, whitespace, anything]
|
|
1215
|
+
>>> output = np.fromregex('test.dat', regexp,
|
|
1216
|
+
... [('num', np.int64), ('key', 'S3')])
|
|
1217
|
+
>>> output
|
|
1218
|
+
array([(1312L, 'foo'), (1534L, 'bar'), (444L, 'qux')],
|
|
1219
|
+
dtype=[('num', '<i8'), ('key', '|S3')])
|
|
1220
|
+
>>> output['num']
|
|
1221
|
+
array([1312, 1534, 444], dtype=int64)
|
|
1222
|
+
|
|
1223
|
+
"""
|
|
1224
|
+
own_fh = False
|
|
1225
|
+
if not hasattr(file, "read"):
|
|
1226
|
+
file = open(file, 'rb')
|
|
1227
|
+
own_fh = True
|
|
1228
|
+
|
|
1229
|
+
try:
|
|
1230
|
+
if not hasattr(regexp, 'match'):
|
|
1231
|
+
regexp = re.compile(asbytes(regexp))
|
|
1232
|
+
if not isinstance(dtype, np.dtype):
|
|
1233
|
+
dtype = np.dtype(dtype)
|
|
1234
|
+
|
|
1235
|
+
seq = regexp.findall(file.read())
|
|
1236
|
+
if seq and not isinstance(seq[0], tuple):
|
|
1237
|
+
# Only one group is in the regexp.
|
|
1238
|
+
# Create the new array as a single data-type and then
|
|
1239
|
+
# re-interpret as a single-field structured array.
|
|
1240
|
+
newdtype = np.dtype(dtype[dtype.names[0]])
|
|
1241
|
+
output = np.array(seq, dtype=newdtype)
|
|
1242
|
+
output.dtype = dtype
|
|
1243
|
+
else:
|
|
1244
|
+
output = np.array(seq, dtype=dtype)
|
|
1245
|
+
|
|
1246
|
+
return output
|
|
1247
|
+
finally:
|
|
1248
|
+
if own_fh:
|
|
1249
|
+
file.close()
|
|
1250
|
+
|
|
1251
|
+
|
|
1252
|
+
#####--------------------------------------------------------------------------
|
|
1253
|
+
#---- --- ASCII functions ---
|
|
1254
|
+
#####--------------------------------------------------------------------------
|
|
1255
|
+
|
|
1256
|
+
|
|
1257
|
+
def genfromtxt(fname, dtype=float, comments='#', delimiter=None,
|
|
1258
|
+
skip_header=0, skip_footer=0, converters=None,
|
|
1259
|
+
missing_values=None, filling_values=None, usecols=None,
|
|
1260
|
+
names=None, excludelist=None, deletechars=None,
|
|
1261
|
+
replace_space='_', autostrip=False, case_sensitive=True,
|
|
1262
|
+
defaultfmt="f%i", unpack=None, usemask=False, loose=True,
|
|
1263
|
+
invalid_raise=True, max_rows=None):
|
|
1264
|
+
"""
|
|
1265
|
+
Load data from a text file, with missing values handled as specified.
|
|
1266
|
+
|
|
1267
|
+
Each line past the first `skip_header` lines is split at the `delimiter`
|
|
1268
|
+
character, and characters following the `comments` character are discarded.
|
|
1269
|
+
|
|
1270
|
+
Parameters
|
|
1271
|
+
----------
|
|
1272
|
+
fname : file or str
|
|
1273
|
+
File, filename, or generator to read. If the filename extension is
|
|
1274
|
+
`.gz` or `.bz2`, the file is first decompressed. Note that
|
|
1275
|
+
generators must return byte strings in Python 3k.
|
|
1276
|
+
dtype : dtype, optional
|
|
1277
|
+
Data type of the resulting array.
|
|
1278
|
+
If None, the dtypes will be determined by the contents of each
|
|
1279
|
+
column, individually.
|
|
1280
|
+
comments : str, optional
|
|
1281
|
+
The character used to indicate the start of a comment.
|
|
1282
|
+
All the characters occurring on a line after a comment are discarded
|
|
1283
|
+
delimiter : str, int, or sequence, optional
|
|
1284
|
+
The string used to separate values. By default, any consecutive
|
|
1285
|
+
whitespaces act as delimiter. An integer or sequence of integers
|
|
1286
|
+
can also be provided as width(s) of each field.
|
|
1287
|
+
skiprows : int, optional
|
|
1288
|
+
`skiprows` was removed in numpy 1.10. Please use `skip_header` instead.
|
|
1289
|
+
skip_header : int, optional
|
|
1290
|
+
The number of lines to skip at the beginning of the file.
|
|
1291
|
+
skip_footer : int, optional
|
|
1292
|
+
The number of lines to skip at the end of the file.
|
|
1293
|
+
converters : variable, optional
|
|
1294
|
+
The set of functions that convert the data of a column to a value.
|
|
1295
|
+
The converters can also be used to provide a default value
|
|
1296
|
+
for missing data: ``converters = {3: lambda s: float(s or 0)}``.
|
|
1297
|
+
missing : variable, optional
|
|
1298
|
+
`missing` was removed in numpy 1.10. Please use `missing_values`
|
|
1299
|
+
instead.
|
|
1300
|
+
missing_values : variable, optional
|
|
1301
|
+
The set of strings corresponding to missing data.
|
|
1302
|
+
filling_values : variable, optional
|
|
1303
|
+
The set of values to be used as default when the data are missing.
|
|
1304
|
+
usecols : sequence, optional
|
|
1305
|
+
Which columns to read, with 0 being the first. For example,
|
|
1306
|
+
``usecols = (1, 4, 5)`` will extract the 2nd, 5th and 6th columns.
|
|
1307
|
+
names : {None, True, str, sequence}, optional
|
|
1308
|
+
If `names` is True, the field names are read from the first valid line
|
|
1309
|
+
after the first `skip_header` lines.
|
|
1310
|
+
If `names` is a sequence or a single-string of comma-separated names,
|
|
1311
|
+
the names will be used to define the field names in a structured dtype.
|
|
1312
|
+
If `names` is None, the names of the dtype fields will be used, if any.
|
|
1313
|
+
excludelist : sequence, optional
|
|
1314
|
+
A list of names to exclude. This list is appended to the default list
|
|
1315
|
+
['return','file','print']. Excluded names are appended an underscore:
|
|
1316
|
+
for example, `file` would become `file_`.
|
|
1317
|
+
deletechars : str, optional
|
|
1318
|
+
A string combining invalid characters that must be deleted from the
|
|
1319
|
+
names.
|
|
1320
|
+
defaultfmt : str, optional
|
|
1321
|
+
A format used to define default field names, such as "f%i" or "f_%02i".
|
|
1322
|
+
autostrip : bool, optional
|
|
1323
|
+
Whether to automatically strip white spaces from the variables.
|
|
1324
|
+
replace_space : char, optional
|
|
1325
|
+
Character(s) used in replacement of white spaces in the variables
|
|
1326
|
+
names. By default, use a '_'.
|
|
1327
|
+
case_sensitive : {True, False, 'upper', 'lower'}, optional
|
|
1328
|
+
If True, field names are case sensitive.
|
|
1329
|
+
If False or 'upper', field names are converted to upper case.
|
|
1330
|
+
If 'lower', field names are converted to lower case.
|
|
1331
|
+
unpack : bool, optional
|
|
1332
|
+
If True, the returned array is transposed, so that arguments may be
|
|
1333
|
+
unpacked using ``x, y, z = loadtxt(...)``
|
|
1334
|
+
usemask : bool, optional
|
|
1335
|
+
If True, return a masked array.
|
|
1336
|
+
If False, return a regular array.
|
|
1337
|
+
loose : bool, optional
|
|
1338
|
+
If True, do not raise errors for invalid values.
|
|
1339
|
+
invalid_raise : bool, optional
|
|
1340
|
+
If True, an exception is raised if an inconsistency is detected in the
|
|
1341
|
+
number of columns.
|
|
1342
|
+
If False, a warning is emitted and the offending lines are skipped.
|
|
1343
|
+
max_rows : int, optional
|
|
1344
|
+
The maximum number of rows to read. Must not be used with skip_footer
|
|
1345
|
+
at the same time. If given, the value must be at least 1. Default is
|
|
1346
|
+
to read the entire file.
|
|
1347
|
+
|
|
1348
|
+
.. versionadded:: 1.10.0
|
|
1349
|
+
|
|
1350
|
+
Returns
|
|
1351
|
+
-------
|
|
1352
|
+
out : ndarray
|
|
1353
|
+
Data read from the text file. If `usemask` is True, this is a
|
|
1354
|
+
masked array.
|
|
1355
|
+
|
|
1356
|
+
See Also
|
|
1357
|
+
--------
|
|
1358
|
+
numpy.loadtxt : equivalent function when no data is missing.
|
|
1359
|
+
|
|
1360
|
+
Notes
|
|
1361
|
+
-----
|
|
1362
|
+
* When spaces are used as delimiters, or when no delimiter has been given
|
|
1363
|
+
as input, there should not be any missing data between two fields.
|
|
1364
|
+
* When the variables are named (either by a flexible dtype or with `names`,
|
|
1365
|
+
there must not be any header in the file (else a ValueError
|
|
1366
|
+
exception is raised).
|
|
1367
|
+
* Individual values are not stripped of spaces by default.
|
|
1368
|
+
When using a custom converter, make sure the function does remove spaces.
|
|
1369
|
+
|
|
1370
|
+
References
|
|
1371
|
+
----------
|
|
1372
|
+
.. [1] Numpy User Guide, section `I/O with Numpy
|
|
1373
|
+
<http://docs.scipy.org/doc/numpy/user/basics.io.genfromtxt.html>`_.
|
|
1374
|
+
|
|
1375
|
+
Examples
|
|
1376
|
+
---------
|
|
1377
|
+
>>> from io import StringIO
|
|
1378
|
+
>>> import numpy as np
|
|
1379
|
+
|
|
1380
|
+
Comma delimited file with mixed dtype
|
|
1381
|
+
|
|
1382
|
+
>>> s = StringIO("1,1.3,abcde")
|
|
1383
|
+
>>> data = np.genfromtxt(s, dtype=[('myint','i8'),('myfloat','f8'),
|
|
1384
|
+
... ('mystring','S5')], delimiter=",")
|
|
1385
|
+
>>> data
|
|
1386
|
+
array((1, 1.3, 'abcde'),
|
|
1387
|
+
dtype=[('myint', '<i8'), ('myfloat', '<f8'), ('mystring', '|S5')])
|
|
1388
|
+
|
|
1389
|
+
Using dtype = None
|
|
1390
|
+
|
|
1391
|
+
>>> s.seek(0) # needed for StringIO example only
|
|
1392
|
+
>>> data = np.genfromtxt(s, dtype=None,
|
|
1393
|
+
... names = ['myint','myfloat','mystring'], delimiter=",")
|
|
1394
|
+
>>> data
|
|
1395
|
+
array((1, 1.3, 'abcde'),
|
|
1396
|
+
dtype=[('myint', '<i8'), ('myfloat', '<f8'), ('mystring', '|S5')])
|
|
1397
|
+
|
|
1398
|
+
Specifying dtype and names
|
|
1399
|
+
|
|
1400
|
+
>>> s.seek(0)
|
|
1401
|
+
>>> data = np.genfromtxt(s, dtype="i8,f8,S5",
|
|
1402
|
+
... names=['myint','myfloat','mystring'], delimiter=",")
|
|
1403
|
+
>>> data
|
|
1404
|
+
array((1, 1.3, 'abcde'),
|
|
1405
|
+
dtype=[('myint', '<i8'), ('myfloat', '<f8'), ('mystring', '|S5')])
|
|
1406
|
+
|
|
1407
|
+
An example with fixed-width columns
|
|
1408
|
+
|
|
1409
|
+
>>> s = StringIO("11.3abcde")
|
|
1410
|
+
>>> data = np.genfromtxt(s, dtype=None, names=['intvar','fltvar','strvar'],
|
|
1411
|
+
... delimiter=[1,3,5])
|
|
1412
|
+
>>> data
|
|
1413
|
+
array((1, 1.3, 'abcde'),
|
|
1414
|
+
dtype=[('intvar', '<i8'), ('fltvar', '<f8'), ('strvar', '|S5')])
|
|
1415
|
+
|
|
1416
|
+
"""
|
|
1417
|
+
if max_rows is not None:
|
|
1418
|
+
if skip_footer:
|
|
1419
|
+
raise ValueError(
|
|
1420
|
+
"The keywords 'skip_footer' and 'max_rows' can not be "
|
|
1421
|
+
"specified at the same time.")
|
|
1422
|
+
if max_rows < 1:
|
|
1423
|
+
raise ValueError("'max_rows' must be at least 1.")
|
|
1424
|
+
|
|
1425
|
+
# Py3 data conversions to bytes, for convenience
|
|
1426
|
+
if comments is not None:
|
|
1427
|
+
comments = asbytes(comments)
|
|
1428
|
+
if isinstance(delimiter, unicode):
|
|
1429
|
+
delimiter = asbytes(delimiter)
|
|
1430
|
+
if isinstance(missing_values, (unicode, list, tuple)):
|
|
1431
|
+
missing_values = asbytes_nested(missing_values)
|
|
1432
|
+
|
|
1433
|
+
#
|
|
1434
|
+
if usemask:
|
|
1435
|
+
from numpy.ma import MaskedArray, make_mask_descr
|
|
1436
|
+
# Check the input dictionary of converters
|
|
1437
|
+
user_converters = converters or {}
|
|
1438
|
+
if not isinstance(user_converters, dict):
|
|
1439
|
+
raise TypeError(
|
|
1440
|
+
"The input argument 'converter' should be a valid dictionary "
|
|
1441
|
+
"(got '%s' instead)" % type(user_converters))
|
|
1442
|
+
|
|
1443
|
+
# Initialize the filehandle, the LineSplitter and the NameValidator
|
|
1444
|
+
own_fhd = False
|
|
1445
|
+
try:
|
|
1446
|
+
if isinstance(fname, basestring):
|
|
1447
|
+
if sys.version_info[0] == 2:
|
|
1448
|
+
fhd = iter(np.lib._datasource.open(fname, 'rbU'))
|
|
1449
|
+
else:
|
|
1450
|
+
fhd = iter(np.lib._datasource.open(fname, 'rb'))
|
|
1451
|
+
own_fhd = True
|
|
1452
|
+
else:
|
|
1453
|
+
fhd = iter(fname)
|
|
1454
|
+
except TypeError:
|
|
1455
|
+
raise TypeError(
|
|
1456
|
+
"fname must be a string, filehandle, or generator. "
|
|
1457
|
+
"(got %s instead)" % type(fname))
|
|
1458
|
+
|
|
1459
|
+
split_line = LineSplitter(delimiter=delimiter, comments=comments,
|
|
1460
|
+
autostrip=autostrip)._handyman
|
|
1461
|
+
validate_names = NameValidator(excludelist=excludelist,
|
|
1462
|
+
deletechars=deletechars,
|
|
1463
|
+
case_sensitive=case_sensitive,
|
|
1464
|
+
replace_space=replace_space)
|
|
1465
|
+
|
|
1466
|
+
# Skip the first `skip_header` rows
|
|
1467
|
+
for i in range(skip_header):
|
|
1468
|
+
next(fhd)
|
|
1469
|
+
|
|
1470
|
+
# Keep on until we find the first valid values
|
|
1471
|
+
first_values = None
|
|
1472
|
+
try:
|
|
1473
|
+
while not first_values:
|
|
1474
|
+
first_line = next(fhd)
|
|
1475
|
+
if names is True:
|
|
1476
|
+
if comments in first_line:
|
|
1477
|
+
first_line = (
|
|
1478
|
+
asbytes('').join(first_line.split(comments)[1:]))
|
|
1479
|
+
first_values = split_line(first_line)
|
|
1480
|
+
except StopIteration:
|
|
1481
|
+
# return an empty array if the datafile is empty
|
|
1482
|
+
first_line = asbytes('')
|
|
1483
|
+
first_values = []
|
|
1484
|
+
warnings.warn('genfromtxt: Empty input file: "%s"' % fname)
|
|
1485
|
+
|
|
1486
|
+
# Should we take the first values as names ?
|
|
1487
|
+
if names is True:
|
|
1488
|
+
fval = first_values[0].strip()
|
|
1489
|
+
if fval in comments:
|
|
1490
|
+
del first_values[0]
|
|
1491
|
+
|
|
1492
|
+
# Check the columns to use: make sure `usecols` is a list
|
|
1493
|
+
if usecols is not None:
|
|
1494
|
+
try:
|
|
1495
|
+
usecols = [_.strip() for _ in usecols.split(",")]
|
|
1496
|
+
except AttributeError:
|
|
1497
|
+
try:
|
|
1498
|
+
usecols = list(usecols)
|
|
1499
|
+
except TypeError:
|
|
1500
|
+
usecols = [usecols, ]
|
|
1501
|
+
nbcols = len(usecols or first_values)
|
|
1502
|
+
|
|
1503
|
+
# Check the names and overwrite the dtype.names if needed
|
|
1504
|
+
if names is True:
|
|
1505
|
+
names = validate_names([_bytes_to_name(_.strip())
|
|
1506
|
+
for _ in first_values])
|
|
1507
|
+
first_line = asbytes('')
|
|
1508
|
+
elif _is_string_like(names):
|
|
1509
|
+
names = validate_names([_.strip() for _ in names.split(',')])
|
|
1510
|
+
elif names:
|
|
1511
|
+
names = validate_names(names)
|
|
1512
|
+
# Get the dtype
|
|
1513
|
+
if dtype is not None:
|
|
1514
|
+
dtype = easy_dtype(dtype, defaultfmt=defaultfmt, names=names,
|
|
1515
|
+
excludelist=excludelist,
|
|
1516
|
+
deletechars=deletechars,
|
|
1517
|
+
case_sensitive=case_sensitive,
|
|
1518
|
+
replace_space=replace_space)
|
|
1519
|
+
# Make sure the names is a list (for 2.5)
|
|
1520
|
+
if names is not None:
|
|
1521
|
+
names = list(names)
|
|
1522
|
+
|
|
1523
|
+
if usecols:
|
|
1524
|
+
for (i, current) in enumerate(usecols):
|
|
1525
|
+
# if usecols is a list of names, convert to a list of indices
|
|
1526
|
+
if _is_string_like(current):
|
|
1527
|
+
usecols[i] = names.index(current)
|
|
1528
|
+
elif current < 0:
|
|
1529
|
+
usecols[i] = current + len(first_values)
|
|
1530
|
+
# If the dtype is not None, make sure we update it
|
|
1531
|
+
if (dtype is not None) and (len(dtype) > nbcols):
|
|
1532
|
+
descr = dtype.descr
|
|
1533
|
+
dtype = np.dtype([descr[_] for _ in usecols])
|
|
1534
|
+
names = list(dtype.names)
|
|
1535
|
+
# If `names` is not None, update the names
|
|
1536
|
+
elif (names is not None) and (len(names) > nbcols):
|
|
1537
|
+
names = [names[_] for _ in usecols]
|
|
1538
|
+
elif (names is not None) and (dtype is not None):
|
|
1539
|
+
names = list(dtype.names)
|
|
1540
|
+
|
|
1541
|
+
# Process the missing values ...............................
|
|
1542
|
+
# Rename missing_values for convenience
|
|
1543
|
+
user_missing_values = missing_values or ()
|
|
1544
|
+
|
|
1545
|
+
# Define the list of missing_values (one column: one list)
|
|
1546
|
+
missing_values = [list([asbytes('')]) for _ in range(nbcols)]
|
|
1547
|
+
|
|
1548
|
+
# We have a dictionary: process it field by field
|
|
1549
|
+
if isinstance(user_missing_values, dict):
|
|
1550
|
+
# Loop on the items
|
|
1551
|
+
for (key, val) in user_missing_values.items():
|
|
1552
|
+
# Is the key a string ?
|
|
1553
|
+
if _is_string_like(key):
|
|
1554
|
+
try:
|
|
1555
|
+
# Transform it into an integer
|
|
1556
|
+
key = names.index(key)
|
|
1557
|
+
except ValueError:
|
|
1558
|
+
# We couldn't find it: the name must have been dropped
|
|
1559
|
+
continue
|
|
1560
|
+
# Redefine the key as needed if it's a column number
|
|
1561
|
+
if usecols:
|
|
1562
|
+
try:
|
|
1563
|
+
key = usecols.index(key)
|
|
1564
|
+
except ValueError:
|
|
1565
|
+
pass
|
|
1566
|
+
# Transform the value as a list of string
|
|
1567
|
+
if isinstance(val, (list, tuple)):
|
|
1568
|
+
val = [str(_) for _ in val]
|
|
1569
|
+
else:
|
|
1570
|
+
val = [str(val), ]
|
|
1571
|
+
# Add the value(s) to the current list of missing
|
|
1572
|
+
if key is None:
|
|
1573
|
+
# None acts as default
|
|
1574
|
+
for miss in missing_values:
|
|
1575
|
+
miss.extend(val)
|
|
1576
|
+
else:
|
|
1577
|
+
missing_values[key].extend(val)
|
|
1578
|
+
# We have a sequence : each item matches a column
|
|
1579
|
+
elif isinstance(user_missing_values, (list, tuple)):
|
|
1580
|
+
for (value, entry) in zip(user_missing_values, missing_values):
|
|
1581
|
+
value = str(value)
|
|
1582
|
+
if value not in entry:
|
|
1583
|
+
entry.append(value)
|
|
1584
|
+
# We have a string : apply it to all entries
|
|
1585
|
+
elif isinstance(user_missing_values, bytes):
|
|
1586
|
+
user_value = user_missing_values.split(asbytes(","))
|
|
1587
|
+
for entry in missing_values:
|
|
1588
|
+
entry.extend(user_value)
|
|
1589
|
+
# We have something else: apply it to all entries
|
|
1590
|
+
else:
|
|
1591
|
+
for entry in missing_values:
|
|
1592
|
+
entry.extend([str(user_missing_values)])
|
|
1593
|
+
|
|
1594
|
+
# Process the filling_values ...............................
|
|
1595
|
+
# Rename the input for convenience
|
|
1596
|
+
user_filling_values = filling_values
|
|
1597
|
+
if user_filling_values is None:
|
|
1598
|
+
user_filling_values = []
|
|
1599
|
+
# Define the default
|
|
1600
|
+
filling_values = [None] * nbcols
|
|
1601
|
+
# We have a dictionary : update each entry individually
|
|
1602
|
+
if isinstance(user_filling_values, dict):
|
|
1603
|
+
for (key, val) in user_filling_values.items():
|
|
1604
|
+
if _is_string_like(key):
|
|
1605
|
+
try:
|
|
1606
|
+
# Transform it into an integer
|
|
1607
|
+
key = names.index(key)
|
|
1608
|
+
except ValueError:
|
|
1609
|
+
# We couldn't find it: the name must have been dropped,
|
|
1610
|
+
continue
|
|
1611
|
+
# Redefine the key if it's a column number and usecols is defined
|
|
1612
|
+
if usecols:
|
|
1613
|
+
try:
|
|
1614
|
+
key = usecols.index(key)
|
|
1615
|
+
except ValueError:
|
|
1616
|
+
pass
|
|
1617
|
+
# Add the value to the list
|
|
1618
|
+
filling_values[key] = val
|
|
1619
|
+
# We have a sequence : update on a one-to-one basis
|
|
1620
|
+
elif isinstance(user_filling_values, (list, tuple)):
|
|
1621
|
+
n = len(user_filling_values)
|
|
1622
|
+
if (n <= nbcols):
|
|
1623
|
+
filling_values[:n] = user_filling_values
|
|
1624
|
+
else:
|
|
1625
|
+
filling_values = user_filling_values[:nbcols]
|
|
1626
|
+
# We have something else : use it for all entries
|
|
1627
|
+
else:
|
|
1628
|
+
filling_values = [user_filling_values] * nbcols
|
|
1629
|
+
|
|
1630
|
+
# Initialize the converters ................................
|
|
1631
|
+
if dtype is None:
|
|
1632
|
+
# Note: we can't use a [...]*nbcols, as we would have 3 times the same
|
|
1633
|
+
# ... converter, instead of 3 different converters.
|
|
1634
|
+
converters = [StringConverter(None, missing_values=miss, default=fill)
|
|
1635
|
+
for (miss, fill) in zip(missing_values, filling_values)]
|
|
1636
|
+
else:
|
|
1637
|
+
dtype_flat = flatten_dtype(dtype, flatten_base=True)
|
|
1638
|
+
# Initialize the converters
|
|
1639
|
+
if len(dtype_flat) > 1:
|
|
1640
|
+
# Flexible type : get a converter from each dtype
|
|
1641
|
+
zipit = zip(dtype_flat, missing_values, filling_values)
|
|
1642
|
+
converters = [StringConverter(dt, locked=True,
|
|
1643
|
+
missing_values=miss, default=fill)
|
|
1644
|
+
for (dt, miss, fill) in zipit]
|
|
1645
|
+
else:
|
|
1646
|
+
# Set to a default converter (but w/ different missing values)
|
|
1647
|
+
zipit = zip(missing_values, filling_values)
|
|
1648
|
+
converters = [StringConverter(dtype, locked=True,
|
|
1649
|
+
missing_values=miss, default=fill)
|
|
1650
|
+
for (miss, fill) in zipit]
|
|
1651
|
+
# Update the converters to use the user-defined ones
|
|
1652
|
+
uc_update = []
|
|
1653
|
+
for (j, conv) in user_converters.items():
|
|
1654
|
+
# If the converter is specified by column names, use the index instead
|
|
1655
|
+
if _is_string_like(j):
|
|
1656
|
+
try:
|
|
1657
|
+
j = names.index(j)
|
|
1658
|
+
i = j
|
|
1659
|
+
except ValueError:
|
|
1660
|
+
continue
|
|
1661
|
+
elif usecols:
|
|
1662
|
+
try:
|
|
1663
|
+
i = usecols.index(j)
|
|
1664
|
+
except ValueError:
|
|
1665
|
+
# Unused converter specified
|
|
1666
|
+
continue
|
|
1667
|
+
else:
|
|
1668
|
+
i = j
|
|
1669
|
+
# Find the value to test - first_line is not filtered by usecols:
|
|
1670
|
+
if len(first_line):
|
|
1671
|
+
testing_value = first_values[j]
|
|
1672
|
+
else:
|
|
1673
|
+
testing_value = None
|
|
1674
|
+
converters[i].update(conv, locked=True,
|
|
1675
|
+
testing_value=testing_value,
|
|
1676
|
+
default=filling_values[i],
|
|
1677
|
+
missing_values=missing_values[i],)
|
|
1678
|
+
uc_update.append((i, conv))
|
|
1679
|
+
# Make sure we have the corrected keys in user_converters...
|
|
1680
|
+
user_converters.update(uc_update)
|
|
1681
|
+
|
|
1682
|
+
# Fixme: possible error as following variable never used.
|
|
1683
|
+
#miss_chars = [_.missing_values for _ in converters]
|
|
1684
|
+
|
|
1685
|
+
# Initialize the output lists ...
|
|
1686
|
+
# ... rows
|
|
1687
|
+
rows = []
|
|
1688
|
+
append_to_rows = rows.append
|
|
1689
|
+
# ... masks
|
|
1690
|
+
if usemask:
|
|
1691
|
+
masks = []
|
|
1692
|
+
append_to_masks = masks.append
|
|
1693
|
+
# ... invalid
|
|
1694
|
+
invalid = []
|
|
1695
|
+
append_to_invalid = invalid.append
|
|
1696
|
+
|
|
1697
|
+
# Parse each line
|
|
1698
|
+
for (i, line) in enumerate(itertools.chain([first_line, ], fhd)):
|
|
1699
|
+
values = split_line(line)
|
|
1700
|
+
nbvalues = len(values)
|
|
1701
|
+
# Skip an empty line
|
|
1702
|
+
if nbvalues == 0:
|
|
1703
|
+
continue
|
|
1704
|
+
if usecols:
|
|
1705
|
+
# Select only the columns we need
|
|
1706
|
+
try:
|
|
1707
|
+
values = [values[_] for _ in usecols]
|
|
1708
|
+
except IndexError:
|
|
1709
|
+
append_to_invalid((i + skip_header + 1, nbvalues))
|
|
1710
|
+
continue
|
|
1711
|
+
elif nbvalues != nbcols:
|
|
1712
|
+
append_to_invalid((i + skip_header + 1, nbvalues))
|
|
1713
|
+
continue
|
|
1714
|
+
# Store the values
|
|
1715
|
+
append_to_rows(tuple(values))
|
|
1716
|
+
if usemask:
|
|
1717
|
+
append_to_masks(tuple([v.strip() in m
|
|
1718
|
+
for (v, m) in zip(values,
|
|
1719
|
+
missing_values)]))
|
|
1720
|
+
if len(rows) == max_rows:
|
|
1721
|
+
break
|
|
1722
|
+
|
|
1723
|
+
if own_fhd:
|
|
1724
|
+
fhd.close()
|
|
1725
|
+
|
|
1726
|
+
# Upgrade the converters (if needed)
|
|
1727
|
+
if dtype is None:
|
|
1728
|
+
for (i, converter) in enumerate(converters):
|
|
1729
|
+
current_column = [itemgetter(i)(_m) for _m in rows]
|
|
1730
|
+
try:
|
|
1731
|
+
converter.iterupgrade(current_column)
|
|
1732
|
+
except ConverterLockError:
|
|
1733
|
+
errmsg = "Converter #%i is locked and cannot be upgraded: " % i
|
|
1734
|
+
current_column = map(itemgetter(i), rows)
|
|
1735
|
+
for (j, value) in enumerate(current_column):
|
|
1736
|
+
try:
|
|
1737
|
+
converter.upgrade(value)
|
|
1738
|
+
except (ConverterError, ValueError):
|
|
1739
|
+
errmsg += "(occurred line #%i for value '%s')"
|
|
1740
|
+
errmsg %= (j + 1 + skip_header, value)
|
|
1741
|
+
raise ConverterError(errmsg)
|
|
1742
|
+
|
|
1743
|
+
# Check that we don't have invalid values
|
|
1744
|
+
nbinvalid = len(invalid)
|
|
1745
|
+
if nbinvalid > 0:
|
|
1746
|
+
nbrows = len(rows) + nbinvalid - skip_footer
|
|
1747
|
+
# Construct the error message
|
|
1748
|
+
template = " Line #%%i (got %%i columns instead of %i)" % nbcols
|
|
1749
|
+
if skip_footer > 0:
|
|
1750
|
+
nbinvalid_skipped = len([_ for _ in invalid
|
|
1751
|
+
if _[0] > nbrows + skip_header])
|
|
1752
|
+
invalid = invalid[:nbinvalid - nbinvalid_skipped]
|
|
1753
|
+
skip_footer -= nbinvalid_skipped
|
|
1754
|
+
#
|
|
1755
|
+
# nbrows -= skip_footer
|
|
1756
|
+
# errmsg = [template % (i, nb)
|
|
1757
|
+
# for (i, nb) in invalid if i < nbrows]
|
|
1758
|
+
# else:
|
|
1759
|
+
errmsg = [template % (i, nb)
|
|
1760
|
+
for (i, nb) in invalid]
|
|
1761
|
+
if len(errmsg):
|
|
1762
|
+
errmsg.insert(0, "Some errors were detected !")
|
|
1763
|
+
errmsg = "\n".join(errmsg)
|
|
1764
|
+
# Raise an exception ?
|
|
1765
|
+
if invalid_raise:
|
|
1766
|
+
raise ValueError(errmsg)
|
|
1767
|
+
# Issue a warning ?
|
|
1768
|
+
else:
|
|
1769
|
+
warnings.warn(errmsg, ConversionWarning)
|
|
1770
|
+
|
|
1771
|
+
# Strip the last skip_footer data
|
|
1772
|
+
if skip_footer > 0:
|
|
1773
|
+
rows = rows[:-skip_footer]
|
|
1774
|
+
if usemask:
|
|
1775
|
+
masks = masks[:-skip_footer]
|
|
1776
|
+
|
|
1777
|
+
# Convert each value according to the converter:
|
|
1778
|
+
# We want to modify the list in place to avoid creating a new one...
|
|
1779
|
+
if loose:
|
|
1780
|
+
rows = list(
|
|
1781
|
+
zip(*[[conv._loose_call(_r) for _r in map(itemgetter(i), rows)]
|
|
1782
|
+
for (i, conv) in enumerate(converters)]))
|
|
1783
|
+
else:
|
|
1784
|
+
rows = list(
|
|
1785
|
+
zip(*[[conv._strict_call(_r) for _r in map(itemgetter(i), rows)]
|
|
1786
|
+
for (i, conv) in enumerate(converters)]))
|
|
1787
|
+
|
|
1788
|
+
# Reset the dtype
|
|
1789
|
+
data = rows
|
|
1790
|
+
if dtype is None:
|
|
1791
|
+
# Get the dtypes from the types of the converters
|
|
1792
|
+
column_types = [conv.type for conv in converters]
|
|
1793
|
+
# Find the columns with strings...
|
|
1794
|
+
strcolidx = [i for (i, v) in enumerate(column_types)
|
|
1795
|
+
if v in (type('S'), np.string_)]
|
|
1796
|
+
# ... and take the largest number of chars.
|
|
1797
|
+
for i in strcolidx:
|
|
1798
|
+
column_types[i] = "|S%i" % max(len(row[i]) for row in data)
|
|
1799
|
+
#
|
|
1800
|
+
if names is None:
|
|
1801
|
+
# If the dtype is uniform, don't define names, else use ''
|
|
1802
|
+
base = set([c.type for c in converters if c._checked])
|
|
1803
|
+
if len(base) == 1:
|
|
1804
|
+
(ddtype, mdtype) = (list(base)[0], np.bool)
|
|
1805
|
+
else:
|
|
1806
|
+
ddtype = [(defaultfmt % i, dt)
|
|
1807
|
+
for (i, dt) in enumerate(column_types)]
|
|
1808
|
+
if usemask:
|
|
1809
|
+
mdtype = [(defaultfmt % i, np.bool)
|
|
1810
|
+
for (i, dt) in enumerate(column_types)]
|
|
1811
|
+
else:
|
|
1812
|
+
ddtype = list(zip(names, column_types))
|
|
1813
|
+
mdtype = list(zip(names, [np.bool] * len(column_types)))
|
|
1814
|
+
output = np.array(data, dtype=ddtype)
|
|
1815
|
+
if usemask:
|
|
1816
|
+
outputmask = np.array(masks, dtype=mdtype)
|
|
1817
|
+
else:
|
|
1818
|
+
# Overwrite the initial dtype names if needed
|
|
1819
|
+
if names and dtype.names:
|
|
1820
|
+
dtype.names = names
|
|
1821
|
+
# Case 1. We have a structured type
|
|
1822
|
+
if len(dtype_flat) > 1:
|
|
1823
|
+
# Nested dtype, eg [('a', int), ('b', [('b0', int), ('b1', 'f4')])]
|
|
1824
|
+
# First, create the array using a flattened dtype:
|
|
1825
|
+
# [('a', int), ('b1', int), ('b2', float)]
|
|
1826
|
+
# Then, view the array using the specified dtype.
|
|
1827
|
+
if 'O' in (_.char for _ in dtype_flat):
|
|
1828
|
+
if has_nested_fields(dtype):
|
|
1829
|
+
raise NotImplementedError(
|
|
1830
|
+
"Nested fields involving objects are not supported...")
|
|
1831
|
+
else:
|
|
1832
|
+
output = np.array(data, dtype=dtype)
|
|
1833
|
+
else:
|
|
1834
|
+
rows = np.array(data, dtype=[('', _) for _ in dtype_flat])
|
|
1835
|
+
output = rows.view(dtype)
|
|
1836
|
+
# Now, process the rowmasks the same way
|
|
1837
|
+
if usemask:
|
|
1838
|
+
rowmasks = np.array(
|
|
1839
|
+
masks, dtype=np.dtype([('', np.bool) for t in dtype_flat]))
|
|
1840
|
+
# Construct the new dtype
|
|
1841
|
+
mdtype = make_mask_descr(dtype)
|
|
1842
|
+
outputmask = rowmasks.view(mdtype)
|
|
1843
|
+
# Case #2. We have a basic dtype
|
|
1844
|
+
else:
|
|
1845
|
+
# We used some user-defined converters
|
|
1846
|
+
if user_converters:
|
|
1847
|
+
ishomogeneous = True
|
|
1848
|
+
descr = []
|
|
1849
|
+
for i, ttype in enumerate([conv.type for conv in converters]):
|
|
1850
|
+
# Keep the dtype of the current converter
|
|
1851
|
+
if i in user_converters:
|
|
1852
|
+
ishomogeneous &= (ttype == dtype.type)
|
|
1853
|
+
if ttype == np.string_:
|
|
1854
|
+
ttype = "|S%i" % max(len(row[i]) for row in data)
|
|
1855
|
+
descr.append(('', ttype))
|
|
1856
|
+
else:
|
|
1857
|
+
descr.append(('', dtype))
|
|
1858
|
+
# So we changed the dtype ?
|
|
1859
|
+
if not ishomogeneous:
|
|
1860
|
+
# We have more than one field
|
|
1861
|
+
if len(descr) > 1:
|
|
1862
|
+
dtype = np.dtype(descr)
|
|
1863
|
+
# We have only one field: drop the name if not needed.
|
|
1864
|
+
else:
|
|
1865
|
+
dtype = np.dtype(ttype)
|
|
1866
|
+
#
|
|
1867
|
+
output = np.array(data, dtype)
|
|
1868
|
+
if usemask:
|
|
1869
|
+
if dtype.names:
|
|
1870
|
+
mdtype = [(_, np.bool) for _ in dtype.names]
|
|
1871
|
+
else:
|
|
1872
|
+
mdtype = np.bool
|
|
1873
|
+
outputmask = np.array(masks, dtype=mdtype)
|
|
1874
|
+
# Try to take care of the missing data we missed
|
|
1875
|
+
names = output.dtype.names
|
|
1876
|
+
if usemask and names:
|
|
1877
|
+
for (name, conv) in zip(names or (), converters):
|
|
1878
|
+
missing_values = [conv(_) for _ in conv.missing_values
|
|
1879
|
+
if _ != asbytes('')]
|
|
1880
|
+
for mval in missing_values:
|
|
1881
|
+
outputmask[name] |= (output[name] == mval)
|
|
1882
|
+
# Construct the final array
|
|
1883
|
+
if usemask:
|
|
1884
|
+
output = output.view(MaskedArray)
|
|
1885
|
+
output._mask = outputmask
|
|
1886
|
+
if unpack:
|
|
1887
|
+
return output.squeeze().T
|
|
1888
|
+
return output.squeeze()
|
|
1889
|
+
|
|
1890
|
+
|
|
1891
|
+
def ndfromtxt(fname, **kwargs):
|
|
1892
|
+
"""
|
|
1893
|
+
Load ASCII data stored in a file and return it as a single array.
|
|
1894
|
+
|
|
1895
|
+
Parameters
|
|
1896
|
+
----------
|
|
1897
|
+
fname, kwargs : For a description of input parameters, see `genfromtxt`.
|
|
1898
|
+
|
|
1899
|
+
See Also
|
|
1900
|
+
--------
|
|
1901
|
+
numpy.genfromtxt : generic function.
|
|
1902
|
+
|
|
1903
|
+
"""
|
|
1904
|
+
kwargs['usemask'] = False
|
|
1905
|
+
return genfromtxt(fname, **kwargs)
|
|
1906
|
+
|
|
1907
|
+
|
|
1908
|
+
def mafromtxt(fname, **kwargs):
|
|
1909
|
+
"""
|
|
1910
|
+
Load ASCII data stored in a text file and return a masked array.
|
|
1911
|
+
|
|
1912
|
+
Parameters
|
|
1913
|
+
----------
|
|
1914
|
+
fname, kwargs : For a description of input parameters, see `genfromtxt`.
|
|
1915
|
+
|
|
1916
|
+
See Also
|
|
1917
|
+
--------
|
|
1918
|
+
numpy.genfromtxt : generic function to load ASCII data.
|
|
1919
|
+
|
|
1920
|
+
"""
|
|
1921
|
+
kwargs['usemask'] = True
|
|
1922
|
+
return genfromtxt(fname, **kwargs)
|
|
1923
|
+
|
|
1924
|
+
|
|
1925
|
+
def recfromtxt(fname, **kwargs):
|
|
1926
|
+
"""
|
|
1927
|
+
Load ASCII data from a file and return it in a record array.
|
|
1928
|
+
|
|
1929
|
+
If ``usemask=False`` a standard `recarray` is returned,
|
|
1930
|
+
if ``usemask=True`` a MaskedRecords array is returned.
|
|
1931
|
+
|
|
1932
|
+
Parameters
|
|
1933
|
+
----------
|
|
1934
|
+
fname, kwargs : For a description of input parameters, see `genfromtxt`.
|
|
1935
|
+
|
|
1936
|
+
See Also
|
|
1937
|
+
--------
|
|
1938
|
+
numpy.genfromtxt : generic function
|
|
1939
|
+
|
|
1940
|
+
Notes
|
|
1941
|
+
-----
|
|
1942
|
+
By default, `dtype` is None, which means that the data-type of the output
|
|
1943
|
+
array will be determined from the data.
|
|
1944
|
+
|
|
1945
|
+
"""
|
|
1946
|
+
kwargs.setdefault("dtype", None)
|
|
1947
|
+
usemask = kwargs.get('usemask', False)
|
|
1948
|
+
output = genfromtxt(fname, **kwargs)
|
|
1949
|
+
if usemask:
|
|
1950
|
+
from numpy.ma.mrecords import MaskedRecords
|
|
1951
|
+
output = output.view(MaskedRecords)
|
|
1952
|
+
else:
|
|
1953
|
+
output = output.view(np.recarray)
|
|
1954
|
+
return output
|
|
1955
|
+
|
|
1956
|
+
|
|
1957
|
+
def recfromcsv(fname, **kwargs):
|
|
1958
|
+
"""
|
|
1959
|
+
Load ASCII data stored in a comma-separated file.
|
|
1960
|
+
|
|
1961
|
+
The returned array is a record array (if ``usemask=False``, see
|
|
1962
|
+
`recarray`) or a masked record array (if ``usemask=True``,
|
|
1963
|
+
see `ma.mrecords.MaskedRecords`).
|
|
1964
|
+
|
|
1965
|
+
Parameters
|
|
1966
|
+
----------
|
|
1967
|
+
fname, kwargs : For a description of input parameters, see `genfromtxt`.
|
|
1968
|
+
|
|
1969
|
+
See Also
|
|
1970
|
+
--------
|
|
1971
|
+
numpy.genfromtxt : generic function to load ASCII data.
|
|
1972
|
+
|
|
1973
|
+
Notes
|
|
1974
|
+
-----
|
|
1975
|
+
By default, `dtype` is None, which means that the data-type of the output
|
|
1976
|
+
array will be determined from the data.
|
|
1977
|
+
|
|
1978
|
+
"""
|
|
1979
|
+
# Set default kwargs for genfromtxt as relevant to csv import.
|
|
1980
|
+
kwargs.setdefault("case_sensitive", "lower")
|
|
1981
|
+
kwargs.setdefault("names", True)
|
|
1982
|
+
kwargs.setdefault("delimiter", ",")
|
|
1983
|
+
kwargs.setdefault("dtype", None)
|
|
1984
|
+
output = genfromtxt(fname, **kwargs)
|
|
1985
|
+
|
|
1986
|
+
usemask = kwargs.get("usemask", False)
|
|
1987
|
+
if usemask:
|
|
1988
|
+
from numpy.ma.mrecords import MaskedRecords
|
|
1989
|
+
output = output.view(MaskedRecords)
|
|
1990
|
+
else:
|
|
1991
|
+
output = output.view(np.recarray)
|
|
1992
|
+
return output
|