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,2689 @@
|
|
|
1
|
+
"""
|
|
2
|
+
This module contains a set of functions for vectorized string
|
|
3
|
+
operations and methods.
|
|
4
|
+
|
|
5
|
+
.. note::
|
|
6
|
+
The `chararray` class exists for backwards compatibility with
|
|
7
|
+
Numarray, it is not recommended for new development. Starting from numpy
|
|
8
|
+
1.4, if one needs arrays of strings, it is recommended to use arrays of
|
|
9
|
+
`dtype` `object_`, `string_` or `unicode_`, and use the free functions
|
|
10
|
+
in the `numpy.char` module for fast vectorized string operations.
|
|
11
|
+
|
|
12
|
+
Some methods will only be available if the corresponding string method is
|
|
13
|
+
available in your version of Python.
|
|
14
|
+
|
|
15
|
+
The preferred alias for `defchararray` is `numpy.char`.
|
|
16
|
+
|
|
17
|
+
"""
|
|
18
|
+
from __future__ import division, absolute_import, print_function
|
|
19
|
+
|
|
20
|
+
import sys
|
|
21
|
+
from .numerictypes import string_, unicode_, integer, object_, bool_, character
|
|
22
|
+
from .numeric import ndarray, compare_chararrays
|
|
23
|
+
from .numeric import array as narray
|
|
24
|
+
from numpy.core.multiarray import _vec_string
|
|
25
|
+
from numpy.compat import asbytes, long
|
|
26
|
+
import numpy
|
|
27
|
+
|
|
28
|
+
__all__ = [
|
|
29
|
+
'chararray', 'equal', 'not_equal', 'greater_equal', 'less_equal',
|
|
30
|
+
'greater', 'less', 'str_len', 'add', 'multiply', 'mod', 'capitalize',
|
|
31
|
+
'center', 'count', 'decode', 'encode', 'endswith', 'expandtabs',
|
|
32
|
+
'find', 'index', 'isalnum', 'isalpha', 'isdigit', 'islower', 'isspace',
|
|
33
|
+
'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'partition',
|
|
34
|
+
'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit',
|
|
35
|
+
'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase',
|
|
36
|
+
'title', 'translate', 'upper', 'zfill', 'isnumeric', 'isdecimal',
|
|
37
|
+
'array', 'asarray'
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
_globalvar = 0
|
|
42
|
+
if sys.version_info[0] >= 3:
|
|
43
|
+
_unicode = str
|
|
44
|
+
_bytes = bytes
|
|
45
|
+
else:
|
|
46
|
+
_unicode = unicode
|
|
47
|
+
_bytes = str
|
|
48
|
+
_len = len
|
|
49
|
+
|
|
50
|
+
def _use_unicode(*args):
|
|
51
|
+
"""
|
|
52
|
+
Helper function for determining the output type of some string
|
|
53
|
+
operations.
|
|
54
|
+
|
|
55
|
+
For an operation on two ndarrays, if at least one is unicode, the
|
|
56
|
+
result should be unicode.
|
|
57
|
+
"""
|
|
58
|
+
for x in args:
|
|
59
|
+
if (isinstance(x, _unicode) or
|
|
60
|
+
issubclass(numpy.asarray(x).dtype.type, unicode_)):
|
|
61
|
+
return unicode_
|
|
62
|
+
return string_
|
|
63
|
+
|
|
64
|
+
def _to_string_or_unicode_array(result):
|
|
65
|
+
"""
|
|
66
|
+
Helper function to cast a result back into a string or unicode array
|
|
67
|
+
if an object array must be used as an intermediary.
|
|
68
|
+
"""
|
|
69
|
+
return numpy.asarray(result.tolist())
|
|
70
|
+
|
|
71
|
+
def _clean_args(*args):
|
|
72
|
+
"""
|
|
73
|
+
Helper function for delegating arguments to Python string
|
|
74
|
+
functions.
|
|
75
|
+
|
|
76
|
+
Many of the Python string operations that have optional arguments
|
|
77
|
+
do not use 'None' to indicate a default value. In these cases,
|
|
78
|
+
we need to remove all `None` arguments, and those following them.
|
|
79
|
+
"""
|
|
80
|
+
newargs = []
|
|
81
|
+
for chk in args:
|
|
82
|
+
if chk is None:
|
|
83
|
+
break
|
|
84
|
+
newargs.append(chk)
|
|
85
|
+
return newargs
|
|
86
|
+
|
|
87
|
+
def _get_num_chars(a):
|
|
88
|
+
"""
|
|
89
|
+
Helper function that returns the number of characters per field in
|
|
90
|
+
a string or unicode array. This is to abstract out the fact that
|
|
91
|
+
for a unicode array this is itemsize / 4.
|
|
92
|
+
"""
|
|
93
|
+
if issubclass(a.dtype.type, unicode_):
|
|
94
|
+
return a.itemsize // 4
|
|
95
|
+
return a.itemsize
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
def equal(x1, x2):
|
|
99
|
+
"""
|
|
100
|
+
Return (x1 == x2) element-wise.
|
|
101
|
+
|
|
102
|
+
Unlike `numpy.equal`, this comparison is performed by first
|
|
103
|
+
stripping whitespace characters from the end of the string. This
|
|
104
|
+
behavior is provided for backward-compatibility with numarray.
|
|
105
|
+
|
|
106
|
+
Parameters
|
|
107
|
+
----------
|
|
108
|
+
x1, x2 : array_like of str or unicode
|
|
109
|
+
Input arrays of the same shape.
|
|
110
|
+
|
|
111
|
+
Returns
|
|
112
|
+
-------
|
|
113
|
+
out : ndarray or bool
|
|
114
|
+
Output array of bools, or a single bool if x1 and x2 are scalars.
|
|
115
|
+
|
|
116
|
+
See Also
|
|
117
|
+
--------
|
|
118
|
+
not_equal, greater_equal, less_equal, greater, less
|
|
119
|
+
"""
|
|
120
|
+
return compare_chararrays(x1, x2, '==', True)
|
|
121
|
+
|
|
122
|
+
def not_equal(x1, x2):
|
|
123
|
+
"""
|
|
124
|
+
Return (x1 != x2) element-wise.
|
|
125
|
+
|
|
126
|
+
Unlike `numpy.not_equal`, this comparison is performed by first
|
|
127
|
+
stripping whitespace characters from the end of the string. This
|
|
128
|
+
behavior is provided for backward-compatibility with numarray.
|
|
129
|
+
|
|
130
|
+
Parameters
|
|
131
|
+
----------
|
|
132
|
+
x1, x2 : array_like of str or unicode
|
|
133
|
+
Input arrays of the same shape.
|
|
134
|
+
|
|
135
|
+
Returns
|
|
136
|
+
-------
|
|
137
|
+
out : ndarray or bool
|
|
138
|
+
Output array of bools, or a single bool if x1 and x2 are scalars.
|
|
139
|
+
|
|
140
|
+
See Also
|
|
141
|
+
--------
|
|
142
|
+
equal, greater_equal, less_equal, greater, less
|
|
143
|
+
"""
|
|
144
|
+
return compare_chararrays(x1, x2, '!=', True)
|
|
145
|
+
|
|
146
|
+
def greater_equal(x1, x2):
|
|
147
|
+
"""
|
|
148
|
+
Return (x1 >= x2) element-wise.
|
|
149
|
+
|
|
150
|
+
Unlike `numpy.greater_equal`, this comparison is performed by
|
|
151
|
+
first stripping whitespace characters from the end of the string.
|
|
152
|
+
This behavior is provided for backward-compatibility with
|
|
153
|
+
numarray.
|
|
154
|
+
|
|
155
|
+
Parameters
|
|
156
|
+
----------
|
|
157
|
+
x1, x2 : array_like of str or unicode
|
|
158
|
+
Input arrays of the same shape.
|
|
159
|
+
|
|
160
|
+
Returns
|
|
161
|
+
-------
|
|
162
|
+
out : ndarray or bool
|
|
163
|
+
Output array of bools, or a single bool if x1 and x2 are scalars.
|
|
164
|
+
|
|
165
|
+
See Also
|
|
166
|
+
--------
|
|
167
|
+
equal, not_equal, less_equal, greater, less
|
|
168
|
+
"""
|
|
169
|
+
return compare_chararrays(x1, x2, '>=', True)
|
|
170
|
+
|
|
171
|
+
def less_equal(x1, x2):
|
|
172
|
+
"""
|
|
173
|
+
Return (x1 <= x2) element-wise.
|
|
174
|
+
|
|
175
|
+
Unlike `numpy.less_equal`, this comparison is performed by first
|
|
176
|
+
stripping whitespace characters from the end of the string. This
|
|
177
|
+
behavior is provided for backward-compatibility with numarray.
|
|
178
|
+
|
|
179
|
+
Parameters
|
|
180
|
+
----------
|
|
181
|
+
x1, x2 : array_like of str or unicode
|
|
182
|
+
Input arrays of the same shape.
|
|
183
|
+
|
|
184
|
+
Returns
|
|
185
|
+
-------
|
|
186
|
+
out : ndarray or bool
|
|
187
|
+
Output array of bools, or a single bool if x1 and x2 are scalars.
|
|
188
|
+
|
|
189
|
+
See Also
|
|
190
|
+
--------
|
|
191
|
+
equal, not_equal, greater_equal, greater, less
|
|
192
|
+
"""
|
|
193
|
+
return compare_chararrays(x1, x2, '<=', True)
|
|
194
|
+
|
|
195
|
+
def greater(x1, x2):
|
|
196
|
+
"""
|
|
197
|
+
Return (x1 > x2) element-wise.
|
|
198
|
+
|
|
199
|
+
Unlike `numpy.greater`, this comparison is performed by first
|
|
200
|
+
stripping whitespace characters from the end of the string. This
|
|
201
|
+
behavior is provided for backward-compatibility with numarray.
|
|
202
|
+
|
|
203
|
+
Parameters
|
|
204
|
+
----------
|
|
205
|
+
x1, x2 : array_like of str or unicode
|
|
206
|
+
Input arrays of the same shape.
|
|
207
|
+
|
|
208
|
+
Returns
|
|
209
|
+
-------
|
|
210
|
+
out : ndarray or bool
|
|
211
|
+
Output array of bools, or a single bool if x1 and x2 are scalars.
|
|
212
|
+
|
|
213
|
+
See Also
|
|
214
|
+
--------
|
|
215
|
+
equal, not_equal, greater_equal, less_equal, less
|
|
216
|
+
"""
|
|
217
|
+
return compare_chararrays(x1, x2, '>', True)
|
|
218
|
+
|
|
219
|
+
def less(x1, x2):
|
|
220
|
+
"""
|
|
221
|
+
Return (x1 < x2) element-wise.
|
|
222
|
+
|
|
223
|
+
Unlike `numpy.greater`, this comparison is performed by first
|
|
224
|
+
stripping whitespace characters from the end of the string. This
|
|
225
|
+
behavior is provided for backward-compatibility with numarray.
|
|
226
|
+
|
|
227
|
+
Parameters
|
|
228
|
+
----------
|
|
229
|
+
x1, x2 : array_like of str or unicode
|
|
230
|
+
Input arrays of the same shape.
|
|
231
|
+
|
|
232
|
+
Returns
|
|
233
|
+
-------
|
|
234
|
+
out : ndarray or bool
|
|
235
|
+
Output array of bools, or a single bool if x1 and x2 are scalars.
|
|
236
|
+
|
|
237
|
+
See Also
|
|
238
|
+
--------
|
|
239
|
+
equal, not_equal, greater_equal, less_equal, greater
|
|
240
|
+
"""
|
|
241
|
+
return compare_chararrays(x1, x2, '<', True)
|
|
242
|
+
|
|
243
|
+
def str_len(a):
|
|
244
|
+
"""
|
|
245
|
+
Return len(a) element-wise.
|
|
246
|
+
|
|
247
|
+
Parameters
|
|
248
|
+
----------
|
|
249
|
+
a : array_like of str or unicode
|
|
250
|
+
|
|
251
|
+
Returns
|
|
252
|
+
-------
|
|
253
|
+
out : ndarray
|
|
254
|
+
Output array of integers
|
|
255
|
+
|
|
256
|
+
See also
|
|
257
|
+
--------
|
|
258
|
+
__builtin__.len
|
|
259
|
+
"""
|
|
260
|
+
return _vec_string(a, integer, '__len__')
|
|
261
|
+
|
|
262
|
+
def add(x1, x2):
|
|
263
|
+
"""
|
|
264
|
+
Return element-wise string concatenation for two arrays of str or unicode.
|
|
265
|
+
|
|
266
|
+
Arrays `x1` and `x2` must have the same shape.
|
|
267
|
+
|
|
268
|
+
Parameters
|
|
269
|
+
----------
|
|
270
|
+
x1 : array_like of str or unicode
|
|
271
|
+
Input array.
|
|
272
|
+
x2 : array_like of str or unicode
|
|
273
|
+
Input array.
|
|
274
|
+
|
|
275
|
+
Returns
|
|
276
|
+
-------
|
|
277
|
+
add : ndarray
|
|
278
|
+
Output array of `string_` or `unicode_`, depending on input types
|
|
279
|
+
of the same shape as `x1` and `x2`.
|
|
280
|
+
|
|
281
|
+
"""
|
|
282
|
+
arr1 = numpy.asarray(x1)
|
|
283
|
+
arr2 = numpy.asarray(x2)
|
|
284
|
+
out_size = _get_num_chars(arr1) + _get_num_chars(arr2)
|
|
285
|
+
dtype = _use_unicode(arr1, arr2)
|
|
286
|
+
return _vec_string(arr1, (dtype, out_size), '__add__', (arr2,))
|
|
287
|
+
|
|
288
|
+
def multiply(a, i):
|
|
289
|
+
"""
|
|
290
|
+
Return (a * i), that is string multiple concatenation,
|
|
291
|
+
element-wise.
|
|
292
|
+
|
|
293
|
+
Values in `i` of less than 0 are treated as 0 (which yields an
|
|
294
|
+
empty string).
|
|
295
|
+
|
|
296
|
+
Parameters
|
|
297
|
+
----------
|
|
298
|
+
a : array_like of str or unicode
|
|
299
|
+
|
|
300
|
+
i : array_like of ints
|
|
301
|
+
|
|
302
|
+
Returns
|
|
303
|
+
-------
|
|
304
|
+
out : ndarray
|
|
305
|
+
Output array of str or unicode, depending on input types
|
|
306
|
+
|
|
307
|
+
"""
|
|
308
|
+
a_arr = numpy.asarray(a)
|
|
309
|
+
i_arr = numpy.asarray(i)
|
|
310
|
+
if not issubclass(i_arr.dtype.type, integer):
|
|
311
|
+
raise ValueError("Can only multiply by integers")
|
|
312
|
+
out_size = _get_num_chars(a_arr) * max(long(i_arr.max()), 0)
|
|
313
|
+
return _vec_string(
|
|
314
|
+
a_arr, (a_arr.dtype.type, out_size), '__mul__', (i_arr,))
|
|
315
|
+
|
|
316
|
+
def mod(a, values):
|
|
317
|
+
"""
|
|
318
|
+
Return (a % i), that is pre-Python 2.6 string formatting
|
|
319
|
+
(iterpolation), element-wise for a pair of array_likes of str
|
|
320
|
+
or unicode.
|
|
321
|
+
|
|
322
|
+
Parameters
|
|
323
|
+
----------
|
|
324
|
+
a : array_like of str or unicode
|
|
325
|
+
|
|
326
|
+
values : array_like of values
|
|
327
|
+
These values will be element-wise interpolated into the string.
|
|
328
|
+
|
|
329
|
+
Returns
|
|
330
|
+
-------
|
|
331
|
+
out : ndarray
|
|
332
|
+
Output array of str or unicode, depending on input types
|
|
333
|
+
|
|
334
|
+
See also
|
|
335
|
+
--------
|
|
336
|
+
str.__mod__
|
|
337
|
+
|
|
338
|
+
"""
|
|
339
|
+
return _to_string_or_unicode_array(
|
|
340
|
+
_vec_string(a, object_, '__mod__', (values,)))
|
|
341
|
+
|
|
342
|
+
def capitalize(a):
|
|
343
|
+
"""
|
|
344
|
+
Return a copy of `a` with only the first character of each element
|
|
345
|
+
capitalized.
|
|
346
|
+
|
|
347
|
+
Calls `str.capitalize` element-wise.
|
|
348
|
+
|
|
349
|
+
For 8-bit strings, this method is locale-dependent.
|
|
350
|
+
|
|
351
|
+
Parameters
|
|
352
|
+
----------
|
|
353
|
+
a : array_like of str or unicode
|
|
354
|
+
Input array of strings to capitalize.
|
|
355
|
+
|
|
356
|
+
Returns
|
|
357
|
+
-------
|
|
358
|
+
out : ndarray
|
|
359
|
+
Output array of str or unicode, depending on input
|
|
360
|
+
types
|
|
361
|
+
|
|
362
|
+
See also
|
|
363
|
+
--------
|
|
364
|
+
str.capitalize
|
|
365
|
+
|
|
366
|
+
Examples
|
|
367
|
+
--------
|
|
368
|
+
>>> c = np.array(['a1b2','1b2a','b2a1','2a1b'],'S4'); c
|
|
369
|
+
array(['a1b2', '1b2a', 'b2a1', '2a1b'],
|
|
370
|
+
dtype='|S4')
|
|
371
|
+
>>> np.char.capitalize(c)
|
|
372
|
+
array(['A1b2', '1b2a', 'B2a1', '2a1b'],
|
|
373
|
+
dtype='|S4')
|
|
374
|
+
|
|
375
|
+
"""
|
|
376
|
+
a_arr = numpy.asarray(a)
|
|
377
|
+
return _vec_string(a_arr, a_arr.dtype, 'capitalize')
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
def center(a, width, fillchar=' '):
|
|
381
|
+
"""
|
|
382
|
+
Return a copy of `a` with its elements centered in a string of
|
|
383
|
+
length `width`.
|
|
384
|
+
|
|
385
|
+
Calls `str.center` element-wise.
|
|
386
|
+
|
|
387
|
+
Parameters
|
|
388
|
+
----------
|
|
389
|
+
a : array_like of str or unicode
|
|
390
|
+
|
|
391
|
+
width : int
|
|
392
|
+
The length of the resulting strings
|
|
393
|
+
fillchar : str or unicode, optional
|
|
394
|
+
The padding character to use (default is space).
|
|
395
|
+
|
|
396
|
+
Returns
|
|
397
|
+
-------
|
|
398
|
+
out : ndarray
|
|
399
|
+
Output array of str or unicode, depending on input
|
|
400
|
+
types
|
|
401
|
+
|
|
402
|
+
See also
|
|
403
|
+
--------
|
|
404
|
+
str.center
|
|
405
|
+
|
|
406
|
+
"""
|
|
407
|
+
a_arr = numpy.asarray(a)
|
|
408
|
+
width_arr = numpy.asarray(width)
|
|
409
|
+
size = long(numpy.max(width_arr.flat))
|
|
410
|
+
if numpy.issubdtype(a_arr.dtype, numpy.string_):
|
|
411
|
+
fillchar = asbytes(fillchar)
|
|
412
|
+
return _vec_string(
|
|
413
|
+
a_arr, (a_arr.dtype.type, size), 'center', (width_arr, fillchar))
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
def count(a, sub, start=0, end=None):
|
|
417
|
+
"""
|
|
418
|
+
Returns an array with the number of non-overlapping occurrences of
|
|
419
|
+
substring `sub` in the range [`start`, `end`].
|
|
420
|
+
|
|
421
|
+
Calls `str.count` element-wise.
|
|
422
|
+
|
|
423
|
+
Parameters
|
|
424
|
+
----------
|
|
425
|
+
a : array_like of str or unicode
|
|
426
|
+
|
|
427
|
+
sub : str or unicode
|
|
428
|
+
The substring to search for.
|
|
429
|
+
|
|
430
|
+
start, end : int, optional
|
|
431
|
+
Optional arguments `start` and `end` are interpreted as slice
|
|
432
|
+
notation to specify the range in which to count.
|
|
433
|
+
|
|
434
|
+
Returns
|
|
435
|
+
-------
|
|
436
|
+
out : ndarray
|
|
437
|
+
Output array of ints.
|
|
438
|
+
|
|
439
|
+
See also
|
|
440
|
+
--------
|
|
441
|
+
str.count
|
|
442
|
+
|
|
443
|
+
Examples
|
|
444
|
+
--------
|
|
445
|
+
>>> c = np.array(['aAaAaA', ' aA ', 'abBABba'])
|
|
446
|
+
>>> c
|
|
447
|
+
array(['aAaAaA', ' aA ', 'abBABba'],
|
|
448
|
+
dtype='|S7')
|
|
449
|
+
>>> np.char.count(c, 'A')
|
|
450
|
+
array([3, 1, 1])
|
|
451
|
+
>>> np.char.count(c, 'aA')
|
|
452
|
+
array([3, 1, 0])
|
|
453
|
+
>>> np.char.count(c, 'A', start=1, end=4)
|
|
454
|
+
array([2, 1, 1])
|
|
455
|
+
>>> np.char.count(c, 'A', start=1, end=3)
|
|
456
|
+
array([1, 0, 0])
|
|
457
|
+
|
|
458
|
+
"""
|
|
459
|
+
return _vec_string(a, integer, 'count', [sub, start] + _clean_args(end))
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
def decode(a, encoding=None, errors=None):
|
|
463
|
+
"""
|
|
464
|
+
Calls `str.decode` element-wise.
|
|
465
|
+
|
|
466
|
+
The set of available codecs comes from the Python standard library,
|
|
467
|
+
and may be extended at runtime. For more information, see the
|
|
468
|
+
:mod:`codecs` module.
|
|
469
|
+
|
|
470
|
+
Parameters
|
|
471
|
+
----------
|
|
472
|
+
a : array_like of str or unicode
|
|
473
|
+
|
|
474
|
+
encoding : str, optional
|
|
475
|
+
The name of an encoding
|
|
476
|
+
|
|
477
|
+
errors : str, optional
|
|
478
|
+
Specifies how to handle encoding errors
|
|
479
|
+
|
|
480
|
+
Returns
|
|
481
|
+
-------
|
|
482
|
+
out : ndarray
|
|
483
|
+
|
|
484
|
+
See also
|
|
485
|
+
--------
|
|
486
|
+
str.decode
|
|
487
|
+
|
|
488
|
+
Notes
|
|
489
|
+
-----
|
|
490
|
+
The type of the result will depend on the encoding specified.
|
|
491
|
+
|
|
492
|
+
Examples
|
|
493
|
+
--------
|
|
494
|
+
>>> c = np.array(['aAaAaA', ' aA ', 'abBABba'])
|
|
495
|
+
>>> c
|
|
496
|
+
array(['aAaAaA', ' aA ', 'abBABba'],
|
|
497
|
+
dtype='|S7')
|
|
498
|
+
>>> np.char.encode(c, encoding='cp037')
|
|
499
|
+
array(['\\x81\\xc1\\x81\\xc1\\x81\\xc1', '@@\\x81\\xc1@@',
|
|
500
|
+
'\\x81\\x82\\xc2\\xc1\\xc2\\x82\\x81'],
|
|
501
|
+
dtype='|S7')
|
|
502
|
+
|
|
503
|
+
"""
|
|
504
|
+
return _to_string_or_unicode_array(
|
|
505
|
+
_vec_string(a, object_, 'decode', _clean_args(encoding, errors)))
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
def encode(a, encoding=None, errors=None):
|
|
509
|
+
"""
|
|
510
|
+
Calls `str.encode` element-wise.
|
|
511
|
+
|
|
512
|
+
The set of available codecs comes from the Python standard library,
|
|
513
|
+
and may be extended at runtime. For more information, see the codecs
|
|
514
|
+
module.
|
|
515
|
+
|
|
516
|
+
Parameters
|
|
517
|
+
----------
|
|
518
|
+
a : array_like of str or unicode
|
|
519
|
+
|
|
520
|
+
encoding : str, optional
|
|
521
|
+
The name of an encoding
|
|
522
|
+
|
|
523
|
+
errors : str, optional
|
|
524
|
+
Specifies how to handle encoding errors
|
|
525
|
+
|
|
526
|
+
Returns
|
|
527
|
+
-------
|
|
528
|
+
out : ndarray
|
|
529
|
+
|
|
530
|
+
See also
|
|
531
|
+
--------
|
|
532
|
+
str.encode
|
|
533
|
+
|
|
534
|
+
Notes
|
|
535
|
+
-----
|
|
536
|
+
The type of the result will depend on the encoding specified.
|
|
537
|
+
|
|
538
|
+
"""
|
|
539
|
+
return _to_string_or_unicode_array(
|
|
540
|
+
_vec_string(a, object_, 'encode', _clean_args(encoding, errors)))
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
def endswith(a, suffix, start=0, end=None):
|
|
544
|
+
"""
|
|
545
|
+
Returns a boolean array which is `True` where the string element
|
|
546
|
+
in `a` ends with `suffix`, otherwise `False`.
|
|
547
|
+
|
|
548
|
+
Calls `str.endswith` element-wise.
|
|
549
|
+
|
|
550
|
+
Parameters
|
|
551
|
+
----------
|
|
552
|
+
a : array_like of str or unicode
|
|
553
|
+
|
|
554
|
+
suffix : str
|
|
555
|
+
|
|
556
|
+
start, end : int, optional
|
|
557
|
+
With optional `start`, test beginning at that position. With
|
|
558
|
+
optional `end`, stop comparing at that position.
|
|
559
|
+
|
|
560
|
+
Returns
|
|
561
|
+
-------
|
|
562
|
+
out : ndarray
|
|
563
|
+
Outputs an array of bools.
|
|
564
|
+
|
|
565
|
+
See also
|
|
566
|
+
--------
|
|
567
|
+
str.endswith
|
|
568
|
+
|
|
569
|
+
Examples
|
|
570
|
+
--------
|
|
571
|
+
>>> s = np.array(['foo', 'bar'])
|
|
572
|
+
>>> s[0] = 'foo'
|
|
573
|
+
>>> s[1] = 'bar'
|
|
574
|
+
>>> s
|
|
575
|
+
array(['foo', 'bar'],
|
|
576
|
+
dtype='|S3')
|
|
577
|
+
>>> np.char.endswith(s, 'ar')
|
|
578
|
+
array([False, True], dtype=bool)
|
|
579
|
+
>>> np.char.endswith(s, 'a', start=1, end=2)
|
|
580
|
+
array([False, True], dtype=bool)
|
|
581
|
+
|
|
582
|
+
"""
|
|
583
|
+
return _vec_string(
|
|
584
|
+
a, bool_, 'endswith', [suffix, start] + _clean_args(end))
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
def expandtabs(a, tabsize=8):
|
|
588
|
+
"""
|
|
589
|
+
Return a copy of each string element where all tab characters are
|
|
590
|
+
replaced by one or more spaces.
|
|
591
|
+
|
|
592
|
+
Calls `str.expandtabs` element-wise.
|
|
593
|
+
|
|
594
|
+
Return a copy of each string element where all tab characters are
|
|
595
|
+
replaced by one or more spaces, depending on the current column
|
|
596
|
+
and the given `tabsize`. The column number is reset to zero after
|
|
597
|
+
each newline occurring in the string. This doesn't understand other
|
|
598
|
+
non-printing characters or escape sequences.
|
|
599
|
+
|
|
600
|
+
Parameters
|
|
601
|
+
----------
|
|
602
|
+
a : array_like of str or unicode
|
|
603
|
+
Input array
|
|
604
|
+
tabsize : int, optional
|
|
605
|
+
Replace tabs with `tabsize` number of spaces. If not given defaults
|
|
606
|
+
to 8 spaces.
|
|
607
|
+
|
|
608
|
+
Returns
|
|
609
|
+
-------
|
|
610
|
+
out : ndarray
|
|
611
|
+
Output array of str or unicode, depending on input type
|
|
612
|
+
|
|
613
|
+
See also
|
|
614
|
+
--------
|
|
615
|
+
str.expandtabs
|
|
616
|
+
|
|
617
|
+
"""
|
|
618
|
+
return _to_string_or_unicode_array(
|
|
619
|
+
_vec_string(a, object_, 'expandtabs', (tabsize,)))
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
def find(a, sub, start=0, end=None):
|
|
623
|
+
"""
|
|
624
|
+
For each element, return the lowest index in the string where
|
|
625
|
+
substring `sub` is found.
|
|
626
|
+
|
|
627
|
+
Calls `str.find` element-wise.
|
|
628
|
+
|
|
629
|
+
For each element, return the lowest index in the string where
|
|
630
|
+
substring `sub` is found, such that `sub` is contained in the
|
|
631
|
+
range [`start`, `end`].
|
|
632
|
+
|
|
633
|
+
Parameters
|
|
634
|
+
----------
|
|
635
|
+
a : array_like of str or unicode
|
|
636
|
+
|
|
637
|
+
sub : str or unicode
|
|
638
|
+
|
|
639
|
+
start, end : int, optional
|
|
640
|
+
Optional arguments `start` and `end` are interpreted as in
|
|
641
|
+
slice notation.
|
|
642
|
+
|
|
643
|
+
Returns
|
|
644
|
+
-------
|
|
645
|
+
out : ndarray or int
|
|
646
|
+
Output array of ints. Returns -1 if `sub` is not found.
|
|
647
|
+
|
|
648
|
+
See also
|
|
649
|
+
--------
|
|
650
|
+
str.find
|
|
651
|
+
|
|
652
|
+
"""
|
|
653
|
+
return _vec_string(
|
|
654
|
+
a, integer, 'find', [sub, start] + _clean_args(end))
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
def index(a, sub, start=0, end=None):
|
|
658
|
+
"""
|
|
659
|
+
Like `find`, but raises `ValueError` when the substring is not found.
|
|
660
|
+
|
|
661
|
+
Calls `str.index` element-wise.
|
|
662
|
+
|
|
663
|
+
Parameters
|
|
664
|
+
----------
|
|
665
|
+
a : array_like of str or unicode
|
|
666
|
+
|
|
667
|
+
sub : str or unicode
|
|
668
|
+
|
|
669
|
+
start, end : int, optional
|
|
670
|
+
|
|
671
|
+
Returns
|
|
672
|
+
-------
|
|
673
|
+
out : ndarray
|
|
674
|
+
Output array of ints. Returns -1 if `sub` is not found.
|
|
675
|
+
|
|
676
|
+
See also
|
|
677
|
+
--------
|
|
678
|
+
find, str.find
|
|
679
|
+
|
|
680
|
+
"""
|
|
681
|
+
return _vec_string(
|
|
682
|
+
a, integer, 'index', [sub, start] + _clean_args(end))
|
|
683
|
+
|
|
684
|
+
def isalnum(a):
|
|
685
|
+
"""
|
|
686
|
+
Returns true for each element if all characters in the string are
|
|
687
|
+
alphanumeric and there is at least one character, false otherwise.
|
|
688
|
+
|
|
689
|
+
Calls `str.isalnum` element-wise.
|
|
690
|
+
|
|
691
|
+
For 8-bit strings, this method is locale-dependent.
|
|
692
|
+
|
|
693
|
+
Parameters
|
|
694
|
+
----------
|
|
695
|
+
a : array_like of str or unicode
|
|
696
|
+
|
|
697
|
+
Returns
|
|
698
|
+
-------
|
|
699
|
+
out : ndarray
|
|
700
|
+
Output array of str or unicode, depending on input type
|
|
701
|
+
|
|
702
|
+
See also
|
|
703
|
+
--------
|
|
704
|
+
str.isalnum
|
|
705
|
+
"""
|
|
706
|
+
return _vec_string(a, bool_, 'isalnum')
|
|
707
|
+
|
|
708
|
+
def isalpha(a):
|
|
709
|
+
"""
|
|
710
|
+
Returns true for each element if all characters in the string are
|
|
711
|
+
alphabetic and there is at least one character, false otherwise.
|
|
712
|
+
|
|
713
|
+
Calls `str.isalpha` element-wise.
|
|
714
|
+
|
|
715
|
+
For 8-bit strings, this method is locale-dependent.
|
|
716
|
+
|
|
717
|
+
Parameters
|
|
718
|
+
----------
|
|
719
|
+
a : array_like of str or unicode
|
|
720
|
+
|
|
721
|
+
Returns
|
|
722
|
+
-------
|
|
723
|
+
out : ndarray
|
|
724
|
+
Output array of bools
|
|
725
|
+
|
|
726
|
+
See also
|
|
727
|
+
--------
|
|
728
|
+
str.isalpha
|
|
729
|
+
"""
|
|
730
|
+
return _vec_string(a, bool_, 'isalpha')
|
|
731
|
+
|
|
732
|
+
def isdigit(a):
|
|
733
|
+
"""
|
|
734
|
+
Returns true for each element if all characters in the string are
|
|
735
|
+
digits and there is at least one character, false otherwise.
|
|
736
|
+
|
|
737
|
+
Calls `str.isdigit` element-wise.
|
|
738
|
+
|
|
739
|
+
For 8-bit strings, this method is locale-dependent.
|
|
740
|
+
|
|
741
|
+
Parameters
|
|
742
|
+
----------
|
|
743
|
+
a : array_like of str or unicode
|
|
744
|
+
|
|
745
|
+
Returns
|
|
746
|
+
-------
|
|
747
|
+
out : ndarray
|
|
748
|
+
Output array of bools
|
|
749
|
+
|
|
750
|
+
See also
|
|
751
|
+
--------
|
|
752
|
+
str.isdigit
|
|
753
|
+
"""
|
|
754
|
+
return _vec_string(a, bool_, 'isdigit')
|
|
755
|
+
|
|
756
|
+
def islower(a):
|
|
757
|
+
"""
|
|
758
|
+
Returns true for each element if all cased characters in the
|
|
759
|
+
string are lowercase and there is at least one cased character,
|
|
760
|
+
false otherwise.
|
|
761
|
+
|
|
762
|
+
Calls `str.islower` element-wise.
|
|
763
|
+
|
|
764
|
+
For 8-bit strings, this method is locale-dependent.
|
|
765
|
+
|
|
766
|
+
Parameters
|
|
767
|
+
----------
|
|
768
|
+
a : array_like of str or unicode
|
|
769
|
+
|
|
770
|
+
Returns
|
|
771
|
+
-------
|
|
772
|
+
out : ndarray
|
|
773
|
+
Output array of bools
|
|
774
|
+
|
|
775
|
+
See also
|
|
776
|
+
--------
|
|
777
|
+
str.islower
|
|
778
|
+
"""
|
|
779
|
+
return _vec_string(a, bool_, 'islower')
|
|
780
|
+
|
|
781
|
+
def isspace(a):
|
|
782
|
+
"""
|
|
783
|
+
Returns true for each element if there are only whitespace
|
|
784
|
+
characters in the string and there is at least one character,
|
|
785
|
+
false otherwise.
|
|
786
|
+
|
|
787
|
+
Calls `str.isspace` element-wise.
|
|
788
|
+
|
|
789
|
+
For 8-bit strings, this method is locale-dependent.
|
|
790
|
+
|
|
791
|
+
Parameters
|
|
792
|
+
----------
|
|
793
|
+
a : array_like of str or unicode
|
|
794
|
+
|
|
795
|
+
Returns
|
|
796
|
+
-------
|
|
797
|
+
out : ndarray
|
|
798
|
+
Output array of bools
|
|
799
|
+
|
|
800
|
+
See also
|
|
801
|
+
--------
|
|
802
|
+
str.isspace
|
|
803
|
+
"""
|
|
804
|
+
return _vec_string(a, bool_, 'isspace')
|
|
805
|
+
|
|
806
|
+
def istitle(a):
|
|
807
|
+
"""
|
|
808
|
+
Returns true for each element if the element is a titlecased
|
|
809
|
+
string and there is at least one character, false otherwise.
|
|
810
|
+
|
|
811
|
+
Call `str.istitle` element-wise.
|
|
812
|
+
|
|
813
|
+
For 8-bit strings, this method is locale-dependent.
|
|
814
|
+
|
|
815
|
+
Parameters
|
|
816
|
+
----------
|
|
817
|
+
a : array_like of str or unicode
|
|
818
|
+
|
|
819
|
+
Returns
|
|
820
|
+
-------
|
|
821
|
+
out : ndarray
|
|
822
|
+
Output array of bools
|
|
823
|
+
|
|
824
|
+
See also
|
|
825
|
+
--------
|
|
826
|
+
str.istitle
|
|
827
|
+
"""
|
|
828
|
+
return _vec_string(a, bool_, 'istitle')
|
|
829
|
+
|
|
830
|
+
def isupper(a):
|
|
831
|
+
"""
|
|
832
|
+
Returns true for each element if all cased characters in the
|
|
833
|
+
string are uppercase and there is at least one character, false
|
|
834
|
+
otherwise.
|
|
835
|
+
|
|
836
|
+
Call `str.isupper` element-wise.
|
|
837
|
+
|
|
838
|
+
For 8-bit strings, this method is locale-dependent.
|
|
839
|
+
|
|
840
|
+
Parameters
|
|
841
|
+
----------
|
|
842
|
+
a : array_like of str or unicode
|
|
843
|
+
|
|
844
|
+
Returns
|
|
845
|
+
-------
|
|
846
|
+
out : ndarray
|
|
847
|
+
Output array of bools
|
|
848
|
+
|
|
849
|
+
See also
|
|
850
|
+
--------
|
|
851
|
+
str.isupper
|
|
852
|
+
"""
|
|
853
|
+
return _vec_string(a, bool_, 'isupper')
|
|
854
|
+
|
|
855
|
+
def join(sep, seq):
|
|
856
|
+
"""
|
|
857
|
+
Return a string which is the concatenation of the strings in the
|
|
858
|
+
sequence `seq`.
|
|
859
|
+
|
|
860
|
+
Calls `str.join` element-wise.
|
|
861
|
+
|
|
862
|
+
Parameters
|
|
863
|
+
----------
|
|
864
|
+
sep : array_like of str or unicode
|
|
865
|
+
seq : array_like of str or unicode
|
|
866
|
+
|
|
867
|
+
Returns
|
|
868
|
+
-------
|
|
869
|
+
out : ndarray
|
|
870
|
+
Output array of str or unicode, depending on input types
|
|
871
|
+
|
|
872
|
+
See also
|
|
873
|
+
--------
|
|
874
|
+
str.join
|
|
875
|
+
"""
|
|
876
|
+
return _to_string_or_unicode_array(
|
|
877
|
+
_vec_string(sep, object_, 'join', (seq,)))
|
|
878
|
+
|
|
879
|
+
|
|
880
|
+
def ljust(a, width, fillchar=' '):
|
|
881
|
+
"""
|
|
882
|
+
Return an array with the elements of `a` left-justified in a
|
|
883
|
+
string of length `width`.
|
|
884
|
+
|
|
885
|
+
Calls `str.ljust` element-wise.
|
|
886
|
+
|
|
887
|
+
Parameters
|
|
888
|
+
----------
|
|
889
|
+
a : array_like of str or unicode
|
|
890
|
+
|
|
891
|
+
width : int
|
|
892
|
+
The length of the resulting strings
|
|
893
|
+
fillchar : str or unicode, optional
|
|
894
|
+
The character to use for padding
|
|
895
|
+
|
|
896
|
+
Returns
|
|
897
|
+
-------
|
|
898
|
+
out : ndarray
|
|
899
|
+
Output array of str or unicode, depending on input type
|
|
900
|
+
|
|
901
|
+
See also
|
|
902
|
+
--------
|
|
903
|
+
str.ljust
|
|
904
|
+
|
|
905
|
+
"""
|
|
906
|
+
a_arr = numpy.asarray(a)
|
|
907
|
+
width_arr = numpy.asarray(width)
|
|
908
|
+
size = long(numpy.max(width_arr.flat))
|
|
909
|
+
if numpy.issubdtype(a_arr.dtype, numpy.string_):
|
|
910
|
+
fillchar = asbytes(fillchar)
|
|
911
|
+
return _vec_string(
|
|
912
|
+
a_arr, (a_arr.dtype.type, size), 'ljust', (width_arr, fillchar))
|
|
913
|
+
|
|
914
|
+
|
|
915
|
+
def lower(a):
|
|
916
|
+
"""
|
|
917
|
+
Return an array with the elements converted to lowercase.
|
|
918
|
+
|
|
919
|
+
Call `str.lower` element-wise.
|
|
920
|
+
|
|
921
|
+
For 8-bit strings, this method is locale-dependent.
|
|
922
|
+
|
|
923
|
+
Parameters
|
|
924
|
+
----------
|
|
925
|
+
a : array_like, {str, unicode}
|
|
926
|
+
Input array.
|
|
927
|
+
|
|
928
|
+
Returns
|
|
929
|
+
-------
|
|
930
|
+
out : ndarray, {str, unicode}
|
|
931
|
+
Output array of str or unicode, depending on input type
|
|
932
|
+
|
|
933
|
+
See also
|
|
934
|
+
--------
|
|
935
|
+
str.lower
|
|
936
|
+
|
|
937
|
+
Examples
|
|
938
|
+
--------
|
|
939
|
+
>>> c = np.array(['A1B C', '1BCA', 'BCA1']); c
|
|
940
|
+
array(['A1B C', '1BCA', 'BCA1'],
|
|
941
|
+
dtype='|S5')
|
|
942
|
+
>>> np.char.lower(c)
|
|
943
|
+
array(['a1b c', '1bca', 'bca1'],
|
|
944
|
+
dtype='|S5')
|
|
945
|
+
|
|
946
|
+
"""
|
|
947
|
+
a_arr = numpy.asarray(a)
|
|
948
|
+
return _vec_string(a_arr, a_arr.dtype, 'lower')
|
|
949
|
+
|
|
950
|
+
|
|
951
|
+
def lstrip(a, chars=None):
|
|
952
|
+
"""
|
|
953
|
+
For each element in `a`, return a copy with the leading characters
|
|
954
|
+
removed.
|
|
955
|
+
|
|
956
|
+
Calls `str.lstrip` element-wise.
|
|
957
|
+
|
|
958
|
+
Parameters
|
|
959
|
+
----------
|
|
960
|
+
a : array-like, {str, unicode}
|
|
961
|
+
Input array.
|
|
962
|
+
|
|
963
|
+
chars : {str, unicode}, optional
|
|
964
|
+
The `chars` argument is a string specifying the set of
|
|
965
|
+
characters to be removed. If omitted or None, the `chars`
|
|
966
|
+
argument defaults to removing whitespace. The `chars` argument
|
|
967
|
+
is not a prefix; rather, all combinations of its values are
|
|
968
|
+
stripped.
|
|
969
|
+
|
|
970
|
+
Returns
|
|
971
|
+
-------
|
|
972
|
+
out : ndarray, {str, unicode}
|
|
973
|
+
Output array of str or unicode, depending on input type
|
|
974
|
+
|
|
975
|
+
See also
|
|
976
|
+
--------
|
|
977
|
+
str.lstrip
|
|
978
|
+
|
|
979
|
+
Examples
|
|
980
|
+
--------
|
|
981
|
+
>>> c = np.array(['aAaAaA', ' aA ', 'abBABba'])
|
|
982
|
+
>>> c
|
|
983
|
+
array(['aAaAaA', ' aA ', 'abBABba'],
|
|
984
|
+
dtype='|S7')
|
|
985
|
+
|
|
986
|
+
The 'a' variable is unstripped from c[1] because whitespace leading.
|
|
987
|
+
|
|
988
|
+
>>> np.char.lstrip(c, 'a')
|
|
989
|
+
array(['AaAaA', ' aA ', 'bBABba'],
|
|
990
|
+
dtype='|S7')
|
|
991
|
+
|
|
992
|
+
|
|
993
|
+
>>> np.char.lstrip(c, 'A') # leaves c unchanged
|
|
994
|
+
array(['aAaAaA', ' aA ', 'abBABba'],
|
|
995
|
+
dtype='|S7')
|
|
996
|
+
>>> (np.char.lstrip(c, ' ') == np.char.lstrip(c, '')).all()
|
|
997
|
+
... # XXX: is this a regression? this line now returns False
|
|
998
|
+
... # np.char.lstrip(c,'') does not modify c at all.
|
|
999
|
+
True
|
|
1000
|
+
>>> (np.char.lstrip(c, ' ') == np.char.lstrip(c, None)).all()
|
|
1001
|
+
True
|
|
1002
|
+
|
|
1003
|
+
"""
|
|
1004
|
+
a_arr = numpy.asarray(a)
|
|
1005
|
+
return _vec_string(a_arr, a_arr.dtype, 'lstrip', (chars,))
|
|
1006
|
+
|
|
1007
|
+
|
|
1008
|
+
def partition(a, sep):
|
|
1009
|
+
"""
|
|
1010
|
+
Partition each element in `a` around `sep`.
|
|
1011
|
+
|
|
1012
|
+
Calls `str.partition` element-wise.
|
|
1013
|
+
|
|
1014
|
+
For each element in `a`, split the element as the first
|
|
1015
|
+
occurrence of `sep`, and return 3 strings containing the part
|
|
1016
|
+
before the separator, the separator itself, and the part after
|
|
1017
|
+
the separator. If the separator is not found, return 3 strings
|
|
1018
|
+
containing the string itself, followed by two empty strings.
|
|
1019
|
+
|
|
1020
|
+
Parameters
|
|
1021
|
+
----------
|
|
1022
|
+
a : array_like, {str, unicode}
|
|
1023
|
+
Input array
|
|
1024
|
+
sep : {str, unicode}
|
|
1025
|
+
Separator to split each string element in `a`.
|
|
1026
|
+
|
|
1027
|
+
Returns
|
|
1028
|
+
-------
|
|
1029
|
+
out : ndarray, {str, unicode}
|
|
1030
|
+
Output array of str or unicode, depending on input type.
|
|
1031
|
+
The output array will have an extra dimension with 3
|
|
1032
|
+
elements per input element.
|
|
1033
|
+
|
|
1034
|
+
See also
|
|
1035
|
+
--------
|
|
1036
|
+
str.partition
|
|
1037
|
+
|
|
1038
|
+
"""
|
|
1039
|
+
return _to_string_or_unicode_array(
|
|
1040
|
+
_vec_string(a, object_, 'partition', (sep,)))
|
|
1041
|
+
|
|
1042
|
+
|
|
1043
|
+
def replace(a, old, new, count=None):
|
|
1044
|
+
"""
|
|
1045
|
+
For each element in `a`, return a copy of the string with all
|
|
1046
|
+
occurrences of substring `old` replaced by `new`.
|
|
1047
|
+
|
|
1048
|
+
Calls `str.replace` element-wise.
|
|
1049
|
+
|
|
1050
|
+
Parameters
|
|
1051
|
+
----------
|
|
1052
|
+
a : array-like of str or unicode
|
|
1053
|
+
|
|
1054
|
+
old, new : str or unicode
|
|
1055
|
+
|
|
1056
|
+
count : int, optional
|
|
1057
|
+
If the optional argument `count` is given, only the first
|
|
1058
|
+
`count` occurrences are replaced.
|
|
1059
|
+
|
|
1060
|
+
Returns
|
|
1061
|
+
-------
|
|
1062
|
+
out : ndarray
|
|
1063
|
+
Output array of str or unicode, depending on input type
|
|
1064
|
+
|
|
1065
|
+
See also
|
|
1066
|
+
--------
|
|
1067
|
+
str.replace
|
|
1068
|
+
|
|
1069
|
+
"""
|
|
1070
|
+
return _to_string_or_unicode_array(
|
|
1071
|
+
_vec_string(
|
|
1072
|
+
a, object_, 'replace', [old, new] + _clean_args(count)))
|
|
1073
|
+
|
|
1074
|
+
|
|
1075
|
+
def rfind(a, sub, start=0, end=None):
|
|
1076
|
+
"""
|
|
1077
|
+
For each element in `a`, return the highest index in the string
|
|
1078
|
+
where substring `sub` is found, such that `sub` is contained
|
|
1079
|
+
within [`start`, `end`].
|
|
1080
|
+
|
|
1081
|
+
Calls `str.rfind` element-wise.
|
|
1082
|
+
|
|
1083
|
+
Parameters
|
|
1084
|
+
----------
|
|
1085
|
+
a : array-like of str or unicode
|
|
1086
|
+
|
|
1087
|
+
sub : str or unicode
|
|
1088
|
+
|
|
1089
|
+
start, end : int, optional
|
|
1090
|
+
Optional arguments `start` and `end` are interpreted as in
|
|
1091
|
+
slice notation.
|
|
1092
|
+
|
|
1093
|
+
Returns
|
|
1094
|
+
-------
|
|
1095
|
+
out : ndarray
|
|
1096
|
+
Output array of ints. Return -1 on failure.
|
|
1097
|
+
|
|
1098
|
+
See also
|
|
1099
|
+
--------
|
|
1100
|
+
str.rfind
|
|
1101
|
+
|
|
1102
|
+
"""
|
|
1103
|
+
return _vec_string(
|
|
1104
|
+
a, integer, 'rfind', [sub, start] + _clean_args(end))
|
|
1105
|
+
|
|
1106
|
+
|
|
1107
|
+
def rindex(a, sub, start=0, end=None):
|
|
1108
|
+
"""
|
|
1109
|
+
Like `rfind`, but raises `ValueError` when the substring `sub` is
|
|
1110
|
+
not found.
|
|
1111
|
+
|
|
1112
|
+
Calls `str.rindex` element-wise.
|
|
1113
|
+
|
|
1114
|
+
Parameters
|
|
1115
|
+
----------
|
|
1116
|
+
a : array-like of str or unicode
|
|
1117
|
+
|
|
1118
|
+
sub : str or unicode
|
|
1119
|
+
|
|
1120
|
+
start, end : int, optional
|
|
1121
|
+
|
|
1122
|
+
Returns
|
|
1123
|
+
-------
|
|
1124
|
+
out : ndarray
|
|
1125
|
+
Output array of ints.
|
|
1126
|
+
|
|
1127
|
+
See also
|
|
1128
|
+
--------
|
|
1129
|
+
rfind, str.rindex
|
|
1130
|
+
|
|
1131
|
+
"""
|
|
1132
|
+
return _vec_string(
|
|
1133
|
+
a, integer, 'rindex', [sub, start] + _clean_args(end))
|
|
1134
|
+
|
|
1135
|
+
|
|
1136
|
+
def rjust(a, width, fillchar=' '):
|
|
1137
|
+
"""
|
|
1138
|
+
Return an array with the elements of `a` right-justified in a
|
|
1139
|
+
string of length `width`.
|
|
1140
|
+
|
|
1141
|
+
Calls `str.rjust` element-wise.
|
|
1142
|
+
|
|
1143
|
+
Parameters
|
|
1144
|
+
----------
|
|
1145
|
+
a : array_like of str or unicode
|
|
1146
|
+
|
|
1147
|
+
width : int
|
|
1148
|
+
The length of the resulting strings
|
|
1149
|
+
fillchar : str or unicode, optional
|
|
1150
|
+
The character to use for padding
|
|
1151
|
+
|
|
1152
|
+
Returns
|
|
1153
|
+
-------
|
|
1154
|
+
out : ndarray
|
|
1155
|
+
Output array of str or unicode, depending on input type
|
|
1156
|
+
|
|
1157
|
+
See also
|
|
1158
|
+
--------
|
|
1159
|
+
str.rjust
|
|
1160
|
+
|
|
1161
|
+
"""
|
|
1162
|
+
a_arr = numpy.asarray(a)
|
|
1163
|
+
width_arr = numpy.asarray(width)
|
|
1164
|
+
size = long(numpy.max(width_arr.flat))
|
|
1165
|
+
if numpy.issubdtype(a_arr.dtype, numpy.string_):
|
|
1166
|
+
fillchar = asbytes(fillchar)
|
|
1167
|
+
return _vec_string(
|
|
1168
|
+
a_arr, (a_arr.dtype.type, size), 'rjust', (width_arr, fillchar))
|
|
1169
|
+
|
|
1170
|
+
|
|
1171
|
+
def rpartition(a, sep):
|
|
1172
|
+
"""
|
|
1173
|
+
Partition (split) each element around the right-most separator.
|
|
1174
|
+
|
|
1175
|
+
Calls `str.rpartition` element-wise.
|
|
1176
|
+
|
|
1177
|
+
For each element in `a`, split the element as the last
|
|
1178
|
+
occurrence of `sep`, and return 3 strings containing the part
|
|
1179
|
+
before the separator, the separator itself, and the part after
|
|
1180
|
+
the separator. If the separator is not found, return 3 strings
|
|
1181
|
+
containing the string itself, followed by two empty strings.
|
|
1182
|
+
|
|
1183
|
+
Parameters
|
|
1184
|
+
----------
|
|
1185
|
+
a : array_like of str or unicode
|
|
1186
|
+
Input array
|
|
1187
|
+
sep : str or unicode
|
|
1188
|
+
Right-most separator to split each element in array.
|
|
1189
|
+
|
|
1190
|
+
Returns
|
|
1191
|
+
-------
|
|
1192
|
+
out : ndarray
|
|
1193
|
+
Output array of string or unicode, depending on input
|
|
1194
|
+
type. The output array will have an extra dimension with
|
|
1195
|
+
3 elements per input element.
|
|
1196
|
+
|
|
1197
|
+
See also
|
|
1198
|
+
--------
|
|
1199
|
+
str.rpartition
|
|
1200
|
+
|
|
1201
|
+
"""
|
|
1202
|
+
return _to_string_or_unicode_array(
|
|
1203
|
+
_vec_string(a, object_, 'rpartition', (sep,)))
|
|
1204
|
+
|
|
1205
|
+
|
|
1206
|
+
def rsplit(a, sep=None, maxsplit=None):
|
|
1207
|
+
"""
|
|
1208
|
+
For each element in `a`, return a list of the words in the
|
|
1209
|
+
string, using `sep` as the delimiter string.
|
|
1210
|
+
|
|
1211
|
+
Calls `str.rsplit` element-wise.
|
|
1212
|
+
|
|
1213
|
+
Except for splitting from the right, `rsplit`
|
|
1214
|
+
behaves like `split`.
|
|
1215
|
+
|
|
1216
|
+
Parameters
|
|
1217
|
+
----------
|
|
1218
|
+
a : array_like of str or unicode
|
|
1219
|
+
|
|
1220
|
+
sep : str or unicode, optional
|
|
1221
|
+
If `sep` is not specified or `None`, any whitespace string
|
|
1222
|
+
is a separator.
|
|
1223
|
+
maxsplit : int, optional
|
|
1224
|
+
If `maxsplit` is given, at most `maxsplit` splits are done,
|
|
1225
|
+
the rightmost ones.
|
|
1226
|
+
|
|
1227
|
+
Returns
|
|
1228
|
+
-------
|
|
1229
|
+
out : ndarray
|
|
1230
|
+
Array of list objects
|
|
1231
|
+
|
|
1232
|
+
See also
|
|
1233
|
+
--------
|
|
1234
|
+
str.rsplit, split
|
|
1235
|
+
|
|
1236
|
+
"""
|
|
1237
|
+
# This will return an array of lists of different sizes, so we
|
|
1238
|
+
# leave it as an object array
|
|
1239
|
+
return _vec_string(
|
|
1240
|
+
a, object_, 'rsplit', [sep] + _clean_args(maxsplit))
|
|
1241
|
+
|
|
1242
|
+
|
|
1243
|
+
def rstrip(a, chars=None):
|
|
1244
|
+
"""
|
|
1245
|
+
For each element in `a`, return a copy with the trailing
|
|
1246
|
+
characters removed.
|
|
1247
|
+
|
|
1248
|
+
Calls `str.rstrip` element-wise.
|
|
1249
|
+
|
|
1250
|
+
Parameters
|
|
1251
|
+
----------
|
|
1252
|
+
a : array-like of str or unicode
|
|
1253
|
+
|
|
1254
|
+
chars : str or unicode, optional
|
|
1255
|
+
The `chars` argument is a string specifying the set of
|
|
1256
|
+
characters to be removed. If omitted or None, the `chars`
|
|
1257
|
+
argument defaults to removing whitespace. The `chars` argument
|
|
1258
|
+
is not a suffix; rather, all combinations of its values are
|
|
1259
|
+
stripped.
|
|
1260
|
+
|
|
1261
|
+
Returns
|
|
1262
|
+
-------
|
|
1263
|
+
out : ndarray
|
|
1264
|
+
Output array of str or unicode, depending on input type
|
|
1265
|
+
|
|
1266
|
+
See also
|
|
1267
|
+
--------
|
|
1268
|
+
str.rstrip
|
|
1269
|
+
|
|
1270
|
+
Examples
|
|
1271
|
+
--------
|
|
1272
|
+
>>> c = np.array(['aAaAaA', 'abBABba'], dtype='S7'); c
|
|
1273
|
+
array(['aAaAaA', 'abBABba'],
|
|
1274
|
+
dtype='|S7')
|
|
1275
|
+
>>> np.char.rstrip(c, 'a')
|
|
1276
|
+
array(['aAaAaA', 'abBABb'],
|
|
1277
|
+
dtype='|S7')
|
|
1278
|
+
>>> np.char.rstrip(c, 'A')
|
|
1279
|
+
array(['aAaAa', 'abBABba'],
|
|
1280
|
+
dtype='|S7')
|
|
1281
|
+
|
|
1282
|
+
"""
|
|
1283
|
+
a_arr = numpy.asarray(a)
|
|
1284
|
+
return _vec_string(a_arr, a_arr.dtype, 'rstrip', (chars,))
|
|
1285
|
+
|
|
1286
|
+
|
|
1287
|
+
def split(a, sep=None, maxsplit=None):
|
|
1288
|
+
"""
|
|
1289
|
+
For each element in `a`, return a list of the words in the
|
|
1290
|
+
string, using `sep` as the delimiter string.
|
|
1291
|
+
|
|
1292
|
+
Calls `str.rsplit` element-wise.
|
|
1293
|
+
|
|
1294
|
+
Parameters
|
|
1295
|
+
----------
|
|
1296
|
+
a : array_like of str or unicode
|
|
1297
|
+
|
|
1298
|
+
sep : str or unicode, optional
|
|
1299
|
+
If `sep` is not specified or `None`, any whitespace string is a
|
|
1300
|
+
separator.
|
|
1301
|
+
|
|
1302
|
+
maxsplit : int, optional
|
|
1303
|
+
If `maxsplit` is given, at most `maxsplit` splits are done.
|
|
1304
|
+
|
|
1305
|
+
Returns
|
|
1306
|
+
-------
|
|
1307
|
+
out : ndarray
|
|
1308
|
+
Array of list objects
|
|
1309
|
+
|
|
1310
|
+
See also
|
|
1311
|
+
--------
|
|
1312
|
+
str.split, rsplit
|
|
1313
|
+
|
|
1314
|
+
"""
|
|
1315
|
+
# This will return an array of lists of different sizes, so we
|
|
1316
|
+
# leave it as an object array
|
|
1317
|
+
return _vec_string(
|
|
1318
|
+
a, object_, 'split', [sep] + _clean_args(maxsplit))
|
|
1319
|
+
|
|
1320
|
+
|
|
1321
|
+
def splitlines(a, keepends=None):
|
|
1322
|
+
"""
|
|
1323
|
+
For each element in `a`, return a list of the lines in the
|
|
1324
|
+
element, breaking at line boundaries.
|
|
1325
|
+
|
|
1326
|
+
Calls `str.splitlines` element-wise.
|
|
1327
|
+
|
|
1328
|
+
Parameters
|
|
1329
|
+
----------
|
|
1330
|
+
a : array_like of str or unicode
|
|
1331
|
+
|
|
1332
|
+
keepends : bool, optional
|
|
1333
|
+
Line breaks are not included in the resulting list unless
|
|
1334
|
+
keepends is given and true.
|
|
1335
|
+
|
|
1336
|
+
Returns
|
|
1337
|
+
-------
|
|
1338
|
+
out : ndarray
|
|
1339
|
+
Array of list objects
|
|
1340
|
+
|
|
1341
|
+
See also
|
|
1342
|
+
--------
|
|
1343
|
+
str.splitlines
|
|
1344
|
+
|
|
1345
|
+
"""
|
|
1346
|
+
return _vec_string(
|
|
1347
|
+
a, object_, 'splitlines', _clean_args(keepends))
|
|
1348
|
+
|
|
1349
|
+
|
|
1350
|
+
def startswith(a, prefix, start=0, end=None):
|
|
1351
|
+
"""
|
|
1352
|
+
Returns a boolean array which is `True` where the string element
|
|
1353
|
+
in `a` starts with `prefix`, otherwise `False`.
|
|
1354
|
+
|
|
1355
|
+
Calls `str.startswith` element-wise.
|
|
1356
|
+
|
|
1357
|
+
Parameters
|
|
1358
|
+
----------
|
|
1359
|
+
a : array_like of str or unicode
|
|
1360
|
+
|
|
1361
|
+
prefix : str
|
|
1362
|
+
|
|
1363
|
+
start, end : int, optional
|
|
1364
|
+
With optional `start`, test beginning at that position. With
|
|
1365
|
+
optional `end`, stop comparing at that position.
|
|
1366
|
+
|
|
1367
|
+
Returns
|
|
1368
|
+
-------
|
|
1369
|
+
out : ndarray
|
|
1370
|
+
Array of booleans
|
|
1371
|
+
|
|
1372
|
+
See also
|
|
1373
|
+
--------
|
|
1374
|
+
str.startswith
|
|
1375
|
+
|
|
1376
|
+
"""
|
|
1377
|
+
return _vec_string(
|
|
1378
|
+
a, bool_, 'startswith', [prefix, start] + _clean_args(end))
|
|
1379
|
+
|
|
1380
|
+
|
|
1381
|
+
def strip(a, chars=None):
|
|
1382
|
+
"""
|
|
1383
|
+
For each element in `a`, return a copy with the leading and
|
|
1384
|
+
trailing characters removed.
|
|
1385
|
+
|
|
1386
|
+
Calls `str.rstrip` element-wise.
|
|
1387
|
+
|
|
1388
|
+
Parameters
|
|
1389
|
+
----------
|
|
1390
|
+
a : array-like of str or unicode
|
|
1391
|
+
|
|
1392
|
+
chars : str or unicode, optional
|
|
1393
|
+
The `chars` argument is a string specifying the set of
|
|
1394
|
+
characters to be removed. If omitted or None, the `chars`
|
|
1395
|
+
argument defaults to removing whitespace. The `chars` argument
|
|
1396
|
+
is not a prefix or suffix; rather, all combinations of its
|
|
1397
|
+
values are stripped.
|
|
1398
|
+
|
|
1399
|
+
Returns
|
|
1400
|
+
-------
|
|
1401
|
+
out : ndarray
|
|
1402
|
+
Output array of str or unicode, depending on input type
|
|
1403
|
+
|
|
1404
|
+
See also
|
|
1405
|
+
--------
|
|
1406
|
+
str.strip
|
|
1407
|
+
|
|
1408
|
+
Examples
|
|
1409
|
+
--------
|
|
1410
|
+
>>> c = np.array(['aAaAaA', ' aA ', 'abBABba'])
|
|
1411
|
+
>>> c
|
|
1412
|
+
array(['aAaAaA', ' aA ', 'abBABba'],
|
|
1413
|
+
dtype='|S7')
|
|
1414
|
+
>>> np.char.strip(c)
|
|
1415
|
+
array(['aAaAaA', 'aA', 'abBABba'],
|
|
1416
|
+
dtype='|S7')
|
|
1417
|
+
>>> np.char.strip(c, 'a') # 'a' unstripped from c[1] because whitespace leads
|
|
1418
|
+
array(['AaAaA', ' aA ', 'bBABb'],
|
|
1419
|
+
dtype='|S7')
|
|
1420
|
+
>>> np.char.strip(c, 'A') # 'A' unstripped from c[1] because (unprinted) ws trails
|
|
1421
|
+
array(['aAaAa', ' aA ', 'abBABba'],
|
|
1422
|
+
dtype='|S7')
|
|
1423
|
+
|
|
1424
|
+
"""
|
|
1425
|
+
a_arr = numpy.asarray(a)
|
|
1426
|
+
return _vec_string(a_arr, a_arr.dtype, 'strip', _clean_args(chars))
|
|
1427
|
+
|
|
1428
|
+
|
|
1429
|
+
def swapcase(a):
|
|
1430
|
+
"""
|
|
1431
|
+
Return element-wise a copy of the string with
|
|
1432
|
+
uppercase characters converted to lowercase and vice versa.
|
|
1433
|
+
|
|
1434
|
+
Calls `str.swapcase` element-wise.
|
|
1435
|
+
|
|
1436
|
+
For 8-bit strings, this method is locale-dependent.
|
|
1437
|
+
|
|
1438
|
+
Parameters
|
|
1439
|
+
----------
|
|
1440
|
+
a : array_like, {str, unicode}
|
|
1441
|
+
Input array.
|
|
1442
|
+
|
|
1443
|
+
Returns
|
|
1444
|
+
-------
|
|
1445
|
+
out : ndarray, {str, unicode}
|
|
1446
|
+
Output array of str or unicode, depending on input type
|
|
1447
|
+
|
|
1448
|
+
See also
|
|
1449
|
+
--------
|
|
1450
|
+
str.swapcase
|
|
1451
|
+
|
|
1452
|
+
Examples
|
|
1453
|
+
--------
|
|
1454
|
+
>>> c=np.array(['a1B c','1b Ca','b Ca1','cA1b'],'S5'); c
|
|
1455
|
+
array(['a1B c', '1b Ca', 'b Ca1', 'cA1b'],
|
|
1456
|
+
dtype='|S5')
|
|
1457
|
+
>>> np.char.swapcase(c)
|
|
1458
|
+
array(['A1b C', '1B cA', 'B cA1', 'Ca1B'],
|
|
1459
|
+
dtype='|S5')
|
|
1460
|
+
|
|
1461
|
+
"""
|
|
1462
|
+
a_arr = numpy.asarray(a)
|
|
1463
|
+
return _vec_string(a_arr, a_arr.dtype, 'swapcase')
|
|
1464
|
+
|
|
1465
|
+
|
|
1466
|
+
def title(a):
|
|
1467
|
+
"""
|
|
1468
|
+
Return element-wise title cased version of string or unicode.
|
|
1469
|
+
|
|
1470
|
+
Title case words start with uppercase characters, all remaining cased
|
|
1471
|
+
characters are lowercase.
|
|
1472
|
+
|
|
1473
|
+
Calls `str.title` element-wise.
|
|
1474
|
+
|
|
1475
|
+
For 8-bit strings, this method is locale-dependent.
|
|
1476
|
+
|
|
1477
|
+
Parameters
|
|
1478
|
+
----------
|
|
1479
|
+
a : array_like, {str, unicode}
|
|
1480
|
+
Input array.
|
|
1481
|
+
|
|
1482
|
+
Returns
|
|
1483
|
+
-------
|
|
1484
|
+
out : ndarray
|
|
1485
|
+
Output array of str or unicode, depending on input type
|
|
1486
|
+
|
|
1487
|
+
See also
|
|
1488
|
+
--------
|
|
1489
|
+
str.title
|
|
1490
|
+
|
|
1491
|
+
Examples
|
|
1492
|
+
--------
|
|
1493
|
+
>>> c=np.array(['a1b c','1b ca','b ca1','ca1b'],'S5'); c
|
|
1494
|
+
array(['a1b c', '1b ca', 'b ca1', 'ca1b'],
|
|
1495
|
+
dtype='|S5')
|
|
1496
|
+
>>> np.char.title(c)
|
|
1497
|
+
array(['A1B C', '1B Ca', 'B Ca1', 'Ca1B'],
|
|
1498
|
+
dtype='|S5')
|
|
1499
|
+
|
|
1500
|
+
"""
|
|
1501
|
+
a_arr = numpy.asarray(a)
|
|
1502
|
+
return _vec_string(a_arr, a_arr.dtype, 'title')
|
|
1503
|
+
|
|
1504
|
+
|
|
1505
|
+
def translate(a, table, deletechars=None):
|
|
1506
|
+
"""
|
|
1507
|
+
For each element in `a`, return a copy of the string where all
|
|
1508
|
+
characters occurring in the optional argument `deletechars` are
|
|
1509
|
+
removed, and the remaining characters have been mapped through the
|
|
1510
|
+
given translation table.
|
|
1511
|
+
|
|
1512
|
+
Calls `str.translate` element-wise.
|
|
1513
|
+
|
|
1514
|
+
Parameters
|
|
1515
|
+
----------
|
|
1516
|
+
a : array-like of str or unicode
|
|
1517
|
+
|
|
1518
|
+
table : str of length 256
|
|
1519
|
+
|
|
1520
|
+
deletechars : str
|
|
1521
|
+
|
|
1522
|
+
Returns
|
|
1523
|
+
-------
|
|
1524
|
+
out : ndarray
|
|
1525
|
+
Output array of str or unicode, depending on input type
|
|
1526
|
+
|
|
1527
|
+
See also
|
|
1528
|
+
--------
|
|
1529
|
+
str.translate
|
|
1530
|
+
|
|
1531
|
+
"""
|
|
1532
|
+
a_arr = numpy.asarray(a)
|
|
1533
|
+
if issubclass(a_arr.dtype.type, unicode_):
|
|
1534
|
+
return _vec_string(
|
|
1535
|
+
a_arr, a_arr.dtype, 'translate', (table,))
|
|
1536
|
+
else:
|
|
1537
|
+
return _vec_string(
|
|
1538
|
+
a_arr, a_arr.dtype, 'translate', [table] + _clean_args(deletechars))
|
|
1539
|
+
|
|
1540
|
+
|
|
1541
|
+
def upper(a):
|
|
1542
|
+
"""
|
|
1543
|
+
Return an array with the elements converted to uppercase.
|
|
1544
|
+
|
|
1545
|
+
Calls `str.upper` element-wise.
|
|
1546
|
+
|
|
1547
|
+
For 8-bit strings, this method is locale-dependent.
|
|
1548
|
+
|
|
1549
|
+
Parameters
|
|
1550
|
+
----------
|
|
1551
|
+
a : array_like, {str, unicode}
|
|
1552
|
+
Input array.
|
|
1553
|
+
|
|
1554
|
+
Returns
|
|
1555
|
+
-------
|
|
1556
|
+
out : ndarray, {str, unicode}
|
|
1557
|
+
Output array of str or unicode, depending on input type
|
|
1558
|
+
|
|
1559
|
+
See also
|
|
1560
|
+
--------
|
|
1561
|
+
str.upper
|
|
1562
|
+
|
|
1563
|
+
Examples
|
|
1564
|
+
--------
|
|
1565
|
+
>>> c = np.array(['a1b c', '1bca', 'bca1']); c
|
|
1566
|
+
array(['a1b c', '1bca', 'bca1'],
|
|
1567
|
+
dtype='|S5')
|
|
1568
|
+
>>> np.char.upper(c)
|
|
1569
|
+
array(['A1B C', '1BCA', 'BCA1'],
|
|
1570
|
+
dtype='|S5')
|
|
1571
|
+
|
|
1572
|
+
"""
|
|
1573
|
+
a_arr = numpy.asarray(a)
|
|
1574
|
+
return _vec_string(a_arr, a_arr.dtype, 'upper')
|
|
1575
|
+
|
|
1576
|
+
|
|
1577
|
+
def zfill(a, width):
|
|
1578
|
+
"""
|
|
1579
|
+
Return the numeric string left-filled with zeros
|
|
1580
|
+
|
|
1581
|
+
Calls `str.zfill` element-wise.
|
|
1582
|
+
|
|
1583
|
+
Parameters
|
|
1584
|
+
----------
|
|
1585
|
+
a : array_like, {str, unicode}
|
|
1586
|
+
Input array.
|
|
1587
|
+
width : int
|
|
1588
|
+
Width of string to left-fill elements in `a`.
|
|
1589
|
+
|
|
1590
|
+
Returns
|
|
1591
|
+
-------
|
|
1592
|
+
out : ndarray, {str, unicode}
|
|
1593
|
+
Output array of str or unicode, depending on input type
|
|
1594
|
+
|
|
1595
|
+
See also
|
|
1596
|
+
--------
|
|
1597
|
+
str.zfill
|
|
1598
|
+
|
|
1599
|
+
"""
|
|
1600
|
+
a_arr = numpy.asarray(a)
|
|
1601
|
+
width_arr = numpy.asarray(width)
|
|
1602
|
+
size = long(numpy.max(width_arr.flat))
|
|
1603
|
+
return _vec_string(
|
|
1604
|
+
a_arr, (a_arr.dtype.type, size), 'zfill', (width_arr,))
|
|
1605
|
+
|
|
1606
|
+
|
|
1607
|
+
def isnumeric(a):
|
|
1608
|
+
"""
|
|
1609
|
+
For each element, return True if there are only numeric
|
|
1610
|
+
characters in the element.
|
|
1611
|
+
|
|
1612
|
+
Calls `unicode.isnumeric` element-wise.
|
|
1613
|
+
|
|
1614
|
+
Numeric characters include digit characters, and all characters
|
|
1615
|
+
that have the Unicode numeric value property, e.g. ``U+2155,
|
|
1616
|
+
VULGAR FRACTION ONE FIFTH``.
|
|
1617
|
+
|
|
1618
|
+
Parameters
|
|
1619
|
+
----------
|
|
1620
|
+
a : array_like, unicode
|
|
1621
|
+
Input array.
|
|
1622
|
+
|
|
1623
|
+
Returns
|
|
1624
|
+
-------
|
|
1625
|
+
out : ndarray, bool
|
|
1626
|
+
Array of booleans of same shape as `a`.
|
|
1627
|
+
|
|
1628
|
+
See also
|
|
1629
|
+
--------
|
|
1630
|
+
unicode.isnumeric
|
|
1631
|
+
|
|
1632
|
+
"""
|
|
1633
|
+
if _use_unicode(a) != unicode_:
|
|
1634
|
+
raise TypeError("isnumeric is only available for Unicode strings and arrays")
|
|
1635
|
+
return _vec_string(a, bool_, 'isnumeric')
|
|
1636
|
+
|
|
1637
|
+
|
|
1638
|
+
def isdecimal(a):
|
|
1639
|
+
"""
|
|
1640
|
+
For each element, return True if there are only decimal
|
|
1641
|
+
characters in the element.
|
|
1642
|
+
|
|
1643
|
+
Calls `unicode.isdecimal` element-wise.
|
|
1644
|
+
|
|
1645
|
+
Decimal characters include digit characters, and all characters
|
|
1646
|
+
that that can be used to form decimal-radix numbers,
|
|
1647
|
+
e.g. ``U+0660, ARABIC-INDIC DIGIT ZERO``.
|
|
1648
|
+
|
|
1649
|
+
Parameters
|
|
1650
|
+
----------
|
|
1651
|
+
a : array_like, unicode
|
|
1652
|
+
Input array.
|
|
1653
|
+
|
|
1654
|
+
Returns
|
|
1655
|
+
-------
|
|
1656
|
+
out : ndarray, bool
|
|
1657
|
+
Array of booleans identical in shape to `a`.
|
|
1658
|
+
|
|
1659
|
+
See also
|
|
1660
|
+
--------
|
|
1661
|
+
unicode.isdecimal
|
|
1662
|
+
|
|
1663
|
+
"""
|
|
1664
|
+
if _use_unicode(a) != unicode_:
|
|
1665
|
+
raise TypeError("isnumeric is only available for Unicode strings and arrays")
|
|
1666
|
+
return _vec_string(a, bool_, 'isdecimal')
|
|
1667
|
+
|
|
1668
|
+
|
|
1669
|
+
class chararray(ndarray):
|
|
1670
|
+
"""
|
|
1671
|
+
chararray(shape, itemsize=1, unicode=False, buffer=None, offset=0,
|
|
1672
|
+
strides=None, order=None)
|
|
1673
|
+
|
|
1674
|
+
Provides a convenient view on arrays of string and unicode values.
|
|
1675
|
+
|
|
1676
|
+
.. note::
|
|
1677
|
+
The `chararray` class exists for backwards compatibility with
|
|
1678
|
+
Numarray, it is not recommended for new development. Starting from numpy
|
|
1679
|
+
1.4, if one needs arrays of strings, it is recommended to use arrays of
|
|
1680
|
+
`dtype` `object_`, `string_` or `unicode_`, and use the free functions
|
|
1681
|
+
in the `numpy.char` module for fast vectorized string operations.
|
|
1682
|
+
|
|
1683
|
+
Versus a regular Numpy array of type `str` or `unicode`, this
|
|
1684
|
+
class adds the following functionality:
|
|
1685
|
+
|
|
1686
|
+
1) values automatically have whitespace removed from the end
|
|
1687
|
+
when indexed
|
|
1688
|
+
|
|
1689
|
+
2) comparison operators automatically remove whitespace from the
|
|
1690
|
+
end when comparing values
|
|
1691
|
+
|
|
1692
|
+
3) vectorized string operations are provided as methods
|
|
1693
|
+
(e.g. `.endswith`) and infix operators (e.g. ``"+", "*", "%"``)
|
|
1694
|
+
|
|
1695
|
+
chararrays should be created using `numpy.char.array` or
|
|
1696
|
+
`numpy.char.asarray`, rather than this constructor directly.
|
|
1697
|
+
|
|
1698
|
+
This constructor creates the array, using `buffer` (with `offset`
|
|
1699
|
+
and `strides`) if it is not ``None``. If `buffer` is ``None``, then
|
|
1700
|
+
constructs a new array with `strides` in "C order", unless both
|
|
1701
|
+
``len(shape) >= 2`` and ``order='Fortran'``, in which case `strides`
|
|
1702
|
+
is in "Fortran order".
|
|
1703
|
+
|
|
1704
|
+
Methods
|
|
1705
|
+
-------
|
|
1706
|
+
astype
|
|
1707
|
+
argsort
|
|
1708
|
+
copy
|
|
1709
|
+
count
|
|
1710
|
+
decode
|
|
1711
|
+
dump
|
|
1712
|
+
dumps
|
|
1713
|
+
encode
|
|
1714
|
+
endswith
|
|
1715
|
+
expandtabs
|
|
1716
|
+
fill
|
|
1717
|
+
find
|
|
1718
|
+
flatten
|
|
1719
|
+
getfield
|
|
1720
|
+
index
|
|
1721
|
+
isalnum
|
|
1722
|
+
isalpha
|
|
1723
|
+
isdecimal
|
|
1724
|
+
isdigit
|
|
1725
|
+
islower
|
|
1726
|
+
isnumeric
|
|
1727
|
+
isspace
|
|
1728
|
+
istitle
|
|
1729
|
+
isupper
|
|
1730
|
+
item
|
|
1731
|
+
join
|
|
1732
|
+
ljust
|
|
1733
|
+
lower
|
|
1734
|
+
lstrip
|
|
1735
|
+
nonzero
|
|
1736
|
+
put
|
|
1737
|
+
ravel
|
|
1738
|
+
repeat
|
|
1739
|
+
replace
|
|
1740
|
+
reshape
|
|
1741
|
+
resize
|
|
1742
|
+
rfind
|
|
1743
|
+
rindex
|
|
1744
|
+
rjust
|
|
1745
|
+
rsplit
|
|
1746
|
+
rstrip
|
|
1747
|
+
searchsorted
|
|
1748
|
+
setfield
|
|
1749
|
+
setflags
|
|
1750
|
+
sort
|
|
1751
|
+
split
|
|
1752
|
+
splitlines
|
|
1753
|
+
squeeze
|
|
1754
|
+
startswith
|
|
1755
|
+
strip
|
|
1756
|
+
swapaxes
|
|
1757
|
+
swapcase
|
|
1758
|
+
take
|
|
1759
|
+
title
|
|
1760
|
+
tofile
|
|
1761
|
+
tolist
|
|
1762
|
+
tostring
|
|
1763
|
+
translate
|
|
1764
|
+
transpose
|
|
1765
|
+
upper
|
|
1766
|
+
view
|
|
1767
|
+
zfill
|
|
1768
|
+
|
|
1769
|
+
Parameters
|
|
1770
|
+
----------
|
|
1771
|
+
shape : tuple
|
|
1772
|
+
Shape of the array.
|
|
1773
|
+
itemsize : int, optional
|
|
1774
|
+
Length of each array element, in number of characters. Default is 1.
|
|
1775
|
+
unicode : bool, optional
|
|
1776
|
+
Are the array elements of type unicode (True) or string (False).
|
|
1777
|
+
Default is False.
|
|
1778
|
+
buffer : int, optional
|
|
1779
|
+
Memory address of the start of the array data. Default is None,
|
|
1780
|
+
in which case a new array is created.
|
|
1781
|
+
offset : int, optional
|
|
1782
|
+
Fixed stride displacement from the beginning of an axis?
|
|
1783
|
+
Default is 0. Needs to be >=0.
|
|
1784
|
+
strides : array_like of ints, optional
|
|
1785
|
+
Strides for the array (see `ndarray.strides` for full description).
|
|
1786
|
+
Default is None.
|
|
1787
|
+
order : {'C', 'F'}, optional
|
|
1788
|
+
The order in which the array data is stored in memory: 'C' ->
|
|
1789
|
+
"row major" order (the default), 'F' -> "column major"
|
|
1790
|
+
(Fortran) order.
|
|
1791
|
+
|
|
1792
|
+
Examples
|
|
1793
|
+
--------
|
|
1794
|
+
>>> charar = np.chararray((3, 3))
|
|
1795
|
+
>>> charar[:] = 'a'
|
|
1796
|
+
>>> charar
|
|
1797
|
+
chararray([['a', 'a', 'a'],
|
|
1798
|
+
['a', 'a', 'a'],
|
|
1799
|
+
['a', 'a', 'a']],
|
|
1800
|
+
dtype='|S1')
|
|
1801
|
+
|
|
1802
|
+
>>> charar = np.chararray(charar.shape, itemsize=5)
|
|
1803
|
+
>>> charar[:] = 'abc'
|
|
1804
|
+
>>> charar
|
|
1805
|
+
chararray([['abc', 'abc', 'abc'],
|
|
1806
|
+
['abc', 'abc', 'abc'],
|
|
1807
|
+
['abc', 'abc', 'abc']],
|
|
1808
|
+
dtype='|S5')
|
|
1809
|
+
|
|
1810
|
+
"""
|
|
1811
|
+
def __new__(subtype, shape, itemsize=1, unicode=False, buffer=None,
|
|
1812
|
+
offset=0, strides=None, order='C'):
|
|
1813
|
+
global _globalvar
|
|
1814
|
+
|
|
1815
|
+
if unicode:
|
|
1816
|
+
dtype = unicode_
|
|
1817
|
+
else:
|
|
1818
|
+
dtype = string_
|
|
1819
|
+
|
|
1820
|
+
# force itemsize to be a Python long, since using Numpy integer
|
|
1821
|
+
# types results in itemsize.itemsize being used as the size of
|
|
1822
|
+
# strings in the new array.
|
|
1823
|
+
itemsize = long(itemsize)
|
|
1824
|
+
|
|
1825
|
+
if sys.version_info[0] >= 3 and isinstance(buffer, _unicode):
|
|
1826
|
+
# On Py3, unicode objects do not have the buffer interface
|
|
1827
|
+
filler = buffer
|
|
1828
|
+
buffer = None
|
|
1829
|
+
else:
|
|
1830
|
+
filler = None
|
|
1831
|
+
|
|
1832
|
+
_globalvar = 1
|
|
1833
|
+
if buffer is None:
|
|
1834
|
+
self = ndarray.__new__(subtype, shape, (dtype, itemsize),
|
|
1835
|
+
order=order)
|
|
1836
|
+
else:
|
|
1837
|
+
self = ndarray.__new__(subtype, shape, (dtype, itemsize),
|
|
1838
|
+
buffer=buffer,
|
|
1839
|
+
offset=offset, strides=strides,
|
|
1840
|
+
order=order)
|
|
1841
|
+
if filler is not None:
|
|
1842
|
+
self[...] = filler
|
|
1843
|
+
_globalvar = 0
|
|
1844
|
+
return self
|
|
1845
|
+
|
|
1846
|
+
def __array_finalize__(self, obj):
|
|
1847
|
+
# The b is a special case because it is used for reconstructing.
|
|
1848
|
+
if not _globalvar and self.dtype.char not in 'SUbc':
|
|
1849
|
+
raise ValueError("Can only create a chararray from string data.")
|
|
1850
|
+
|
|
1851
|
+
def __getitem__(self, obj):
|
|
1852
|
+
val = ndarray.__getitem__(self, obj)
|
|
1853
|
+
|
|
1854
|
+
if isinstance(val, character):
|
|
1855
|
+
temp = val.rstrip()
|
|
1856
|
+
if _len(temp) == 0:
|
|
1857
|
+
val = ''
|
|
1858
|
+
else:
|
|
1859
|
+
val = temp
|
|
1860
|
+
|
|
1861
|
+
return val
|
|
1862
|
+
|
|
1863
|
+
# IMPLEMENTATION NOTE: Most of the methods of this class are
|
|
1864
|
+
# direct delegations to the free functions in this module.
|
|
1865
|
+
# However, those that return an array of strings should instead
|
|
1866
|
+
# return a chararray, so some extra wrapping is required.
|
|
1867
|
+
|
|
1868
|
+
def __eq__(self, other):
|
|
1869
|
+
"""
|
|
1870
|
+
Return (self == other) element-wise.
|
|
1871
|
+
|
|
1872
|
+
See also
|
|
1873
|
+
--------
|
|
1874
|
+
equal
|
|
1875
|
+
"""
|
|
1876
|
+
return equal(self, other)
|
|
1877
|
+
|
|
1878
|
+
def __ne__(self, other):
|
|
1879
|
+
"""
|
|
1880
|
+
Return (self != other) element-wise.
|
|
1881
|
+
|
|
1882
|
+
See also
|
|
1883
|
+
--------
|
|
1884
|
+
not_equal
|
|
1885
|
+
"""
|
|
1886
|
+
return not_equal(self, other)
|
|
1887
|
+
|
|
1888
|
+
def __ge__(self, other):
|
|
1889
|
+
"""
|
|
1890
|
+
Return (self >= other) element-wise.
|
|
1891
|
+
|
|
1892
|
+
See also
|
|
1893
|
+
--------
|
|
1894
|
+
greater_equal
|
|
1895
|
+
"""
|
|
1896
|
+
return greater_equal(self, other)
|
|
1897
|
+
|
|
1898
|
+
def __le__(self, other):
|
|
1899
|
+
"""
|
|
1900
|
+
Return (self <= other) element-wise.
|
|
1901
|
+
|
|
1902
|
+
See also
|
|
1903
|
+
--------
|
|
1904
|
+
less_equal
|
|
1905
|
+
"""
|
|
1906
|
+
return less_equal(self, other)
|
|
1907
|
+
|
|
1908
|
+
def __gt__(self, other):
|
|
1909
|
+
"""
|
|
1910
|
+
Return (self > other) element-wise.
|
|
1911
|
+
|
|
1912
|
+
See also
|
|
1913
|
+
--------
|
|
1914
|
+
greater
|
|
1915
|
+
"""
|
|
1916
|
+
return greater(self, other)
|
|
1917
|
+
|
|
1918
|
+
def __lt__(self, other):
|
|
1919
|
+
"""
|
|
1920
|
+
Return (self < other) element-wise.
|
|
1921
|
+
|
|
1922
|
+
See also
|
|
1923
|
+
--------
|
|
1924
|
+
less
|
|
1925
|
+
"""
|
|
1926
|
+
return less(self, other)
|
|
1927
|
+
|
|
1928
|
+
def __add__(self, other):
|
|
1929
|
+
"""
|
|
1930
|
+
Return (self + other), that is string concatenation,
|
|
1931
|
+
element-wise for a pair of array_likes of str or unicode.
|
|
1932
|
+
|
|
1933
|
+
See also
|
|
1934
|
+
--------
|
|
1935
|
+
add
|
|
1936
|
+
"""
|
|
1937
|
+
return asarray(add(self, other))
|
|
1938
|
+
|
|
1939
|
+
def __radd__(self, other):
|
|
1940
|
+
"""
|
|
1941
|
+
Return (other + self), that is string concatenation,
|
|
1942
|
+
element-wise for a pair of array_likes of `string_` or `unicode_`.
|
|
1943
|
+
|
|
1944
|
+
See also
|
|
1945
|
+
--------
|
|
1946
|
+
add
|
|
1947
|
+
"""
|
|
1948
|
+
return asarray(add(numpy.asarray(other), self))
|
|
1949
|
+
|
|
1950
|
+
def __mul__(self, i):
|
|
1951
|
+
"""
|
|
1952
|
+
Return (self * i), that is string multiple concatenation,
|
|
1953
|
+
element-wise.
|
|
1954
|
+
|
|
1955
|
+
See also
|
|
1956
|
+
--------
|
|
1957
|
+
multiply
|
|
1958
|
+
"""
|
|
1959
|
+
return asarray(multiply(self, i))
|
|
1960
|
+
|
|
1961
|
+
def __rmul__(self, i):
|
|
1962
|
+
"""
|
|
1963
|
+
Return (self * i), that is string multiple concatenation,
|
|
1964
|
+
element-wise.
|
|
1965
|
+
|
|
1966
|
+
See also
|
|
1967
|
+
--------
|
|
1968
|
+
multiply
|
|
1969
|
+
"""
|
|
1970
|
+
return asarray(multiply(self, i))
|
|
1971
|
+
|
|
1972
|
+
def __mod__(self, i):
|
|
1973
|
+
"""
|
|
1974
|
+
Return (self % i), that is pre-Python 2.6 string formatting
|
|
1975
|
+
(iterpolation), element-wise for a pair of array_likes of `string_`
|
|
1976
|
+
or `unicode_`.
|
|
1977
|
+
|
|
1978
|
+
See also
|
|
1979
|
+
--------
|
|
1980
|
+
mod
|
|
1981
|
+
"""
|
|
1982
|
+
return asarray(mod(self, i))
|
|
1983
|
+
|
|
1984
|
+
def __rmod__(self, other):
|
|
1985
|
+
return NotImplemented
|
|
1986
|
+
|
|
1987
|
+
def argsort(self, axis=-1, kind='quicksort', order=None):
|
|
1988
|
+
"""
|
|
1989
|
+
Return the indices that sort the array lexicographically.
|
|
1990
|
+
|
|
1991
|
+
For full documentation see `numpy.argsort`, for which this method is
|
|
1992
|
+
in fact merely a "thin wrapper."
|
|
1993
|
+
|
|
1994
|
+
Examples
|
|
1995
|
+
--------
|
|
1996
|
+
>>> c = np.array(['a1b c', '1b ca', 'b ca1', 'Ca1b'], 'S5')
|
|
1997
|
+
>>> c = c.view(np.chararray); c
|
|
1998
|
+
chararray(['a1b c', '1b ca', 'b ca1', 'Ca1b'],
|
|
1999
|
+
dtype='|S5')
|
|
2000
|
+
>>> c[c.argsort()]
|
|
2001
|
+
chararray(['1b ca', 'Ca1b', 'a1b c', 'b ca1'],
|
|
2002
|
+
dtype='|S5')
|
|
2003
|
+
|
|
2004
|
+
"""
|
|
2005
|
+
return self.__array__().argsort(axis, kind, order)
|
|
2006
|
+
argsort.__doc__ = ndarray.argsort.__doc__
|
|
2007
|
+
|
|
2008
|
+
def capitalize(self):
|
|
2009
|
+
"""
|
|
2010
|
+
Return a copy of `self` with only the first character of each element
|
|
2011
|
+
capitalized.
|
|
2012
|
+
|
|
2013
|
+
See also
|
|
2014
|
+
--------
|
|
2015
|
+
char.capitalize
|
|
2016
|
+
|
|
2017
|
+
"""
|
|
2018
|
+
return asarray(capitalize(self))
|
|
2019
|
+
|
|
2020
|
+
def center(self, width, fillchar=' '):
|
|
2021
|
+
"""
|
|
2022
|
+
Return a copy of `self` with its elements centered in a
|
|
2023
|
+
string of length `width`.
|
|
2024
|
+
|
|
2025
|
+
See also
|
|
2026
|
+
--------
|
|
2027
|
+
center
|
|
2028
|
+
"""
|
|
2029
|
+
return asarray(center(self, width, fillchar))
|
|
2030
|
+
|
|
2031
|
+
def count(self, sub, start=0, end=None):
|
|
2032
|
+
"""
|
|
2033
|
+
Returns an array with the number of non-overlapping occurrences of
|
|
2034
|
+
substring `sub` in the range [`start`, `end`].
|
|
2035
|
+
|
|
2036
|
+
See also
|
|
2037
|
+
--------
|
|
2038
|
+
char.count
|
|
2039
|
+
|
|
2040
|
+
"""
|
|
2041
|
+
return count(self, sub, start, end)
|
|
2042
|
+
|
|
2043
|
+
def decode(self, encoding=None, errors=None):
|
|
2044
|
+
"""
|
|
2045
|
+
Calls `str.decode` element-wise.
|
|
2046
|
+
|
|
2047
|
+
See also
|
|
2048
|
+
--------
|
|
2049
|
+
char.decode
|
|
2050
|
+
|
|
2051
|
+
"""
|
|
2052
|
+
return decode(self, encoding, errors)
|
|
2053
|
+
|
|
2054
|
+
def encode(self, encoding=None, errors=None):
|
|
2055
|
+
"""
|
|
2056
|
+
Calls `str.encode` element-wise.
|
|
2057
|
+
|
|
2058
|
+
See also
|
|
2059
|
+
--------
|
|
2060
|
+
char.encode
|
|
2061
|
+
|
|
2062
|
+
"""
|
|
2063
|
+
return encode(self, encoding, errors)
|
|
2064
|
+
|
|
2065
|
+
def endswith(self, suffix, start=0, end=None):
|
|
2066
|
+
"""
|
|
2067
|
+
Returns a boolean array which is `True` where the string element
|
|
2068
|
+
in `self` ends with `suffix`, otherwise `False`.
|
|
2069
|
+
|
|
2070
|
+
See also
|
|
2071
|
+
--------
|
|
2072
|
+
char.endswith
|
|
2073
|
+
|
|
2074
|
+
"""
|
|
2075
|
+
return endswith(self, suffix, start, end)
|
|
2076
|
+
|
|
2077
|
+
def expandtabs(self, tabsize=8):
|
|
2078
|
+
"""
|
|
2079
|
+
Return a copy of each string element where all tab characters are
|
|
2080
|
+
replaced by one or more spaces.
|
|
2081
|
+
|
|
2082
|
+
See also
|
|
2083
|
+
--------
|
|
2084
|
+
char.expandtabs
|
|
2085
|
+
|
|
2086
|
+
"""
|
|
2087
|
+
return asarray(expandtabs(self, tabsize))
|
|
2088
|
+
|
|
2089
|
+
def find(self, sub, start=0, end=None):
|
|
2090
|
+
"""
|
|
2091
|
+
For each element, return the lowest index in the string where
|
|
2092
|
+
substring `sub` is found.
|
|
2093
|
+
|
|
2094
|
+
See also
|
|
2095
|
+
--------
|
|
2096
|
+
char.find
|
|
2097
|
+
|
|
2098
|
+
"""
|
|
2099
|
+
return find(self, sub, start, end)
|
|
2100
|
+
|
|
2101
|
+
def index(self, sub, start=0, end=None):
|
|
2102
|
+
"""
|
|
2103
|
+
Like `find`, but raises `ValueError` when the substring is not found.
|
|
2104
|
+
|
|
2105
|
+
See also
|
|
2106
|
+
--------
|
|
2107
|
+
char.index
|
|
2108
|
+
|
|
2109
|
+
"""
|
|
2110
|
+
return index(self, sub, start, end)
|
|
2111
|
+
|
|
2112
|
+
def isalnum(self):
|
|
2113
|
+
"""
|
|
2114
|
+
Returns true for each element if all characters in the string
|
|
2115
|
+
are alphanumeric and there is at least one character, false
|
|
2116
|
+
otherwise.
|
|
2117
|
+
|
|
2118
|
+
See also
|
|
2119
|
+
--------
|
|
2120
|
+
char.isalnum
|
|
2121
|
+
|
|
2122
|
+
"""
|
|
2123
|
+
return isalnum(self)
|
|
2124
|
+
|
|
2125
|
+
def isalpha(self):
|
|
2126
|
+
"""
|
|
2127
|
+
Returns true for each element if all characters in the string
|
|
2128
|
+
are alphabetic and there is at least one character, false
|
|
2129
|
+
otherwise.
|
|
2130
|
+
|
|
2131
|
+
See also
|
|
2132
|
+
--------
|
|
2133
|
+
char.isalpha
|
|
2134
|
+
|
|
2135
|
+
"""
|
|
2136
|
+
return isalpha(self)
|
|
2137
|
+
|
|
2138
|
+
def isdigit(self):
|
|
2139
|
+
"""
|
|
2140
|
+
Returns true for each element if all characters in the string are
|
|
2141
|
+
digits and there is at least one character, false otherwise.
|
|
2142
|
+
|
|
2143
|
+
See also
|
|
2144
|
+
--------
|
|
2145
|
+
char.isdigit
|
|
2146
|
+
|
|
2147
|
+
"""
|
|
2148
|
+
return isdigit(self)
|
|
2149
|
+
|
|
2150
|
+
def islower(self):
|
|
2151
|
+
"""
|
|
2152
|
+
Returns true for each element if all cased characters in the
|
|
2153
|
+
string are lowercase and there is at least one cased character,
|
|
2154
|
+
false otherwise.
|
|
2155
|
+
|
|
2156
|
+
See also
|
|
2157
|
+
--------
|
|
2158
|
+
char.islower
|
|
2159
|
+
|
|
2160
|
+
"""
|
|
2161
|
+
return islower(self)
|
|
2162
|
+
|
|
2163
|
+
def isspace(self):
|
|
2164
|
+
"""
|
|
2165
|
+
Returns true for each element if there are only whitespace
|
|
2166
|
+
characters in the string and there is at least one character,
|
|
2167
|
+
false otherwise.
|
|
2168
|
+
|
|
2169
|
+
See also
|
|
2170
|
+
--------
|
|
2171
|
+
char.isspace
|
|
2172
|
+
|
|
2173
|
+
"""
|
|
2174
|
+
return isspace(self)
|
|
2175
|
+
|
|
2176
|
+
def istitle(self):
|
|
2177
|
+
"""
|
|
2178
|
+
Returns true for each element if the element is a titlecased
|
|
2179
|
+
string and there is at least one character, false otherwise.
|
|
2180
|
+
|
|
2181
|
+
See also
|
|
2182
|
+
--------
|
|
2183
|
+
char.istitle
|
|
2184
|
+
|
|
2185
|
+
"""
|
|
2186
|
+
return istitle(self)
|
|
2187
|
+
|
|
2188
|
+
def isupper(self):
|
|
2189
|
+
"""
|
|
2190
|
+
Returns true for each element if all cased characters in the
|
|
2191
|
+
string are uppercase and there is at least one character, false
|
|
2192
|
+
otherwise.
|
|
2193
|
+
|
|
2194
|
+
See also
|
|
2195
|
+
--------
|
|
2196
|
+
char.isupper
|
|
2197
|
+
|
|
2198
|
+
"""
|
|
2199
|
+
return isupper(self)
|
|
2200
|
+
|
|
2201
|
+
def join(self, seq):
|
|
2202
|
+
"""
|
|
2203
|
+
Return a string which is the concatenation of the strings in the
|
|
2204
|
+
sequence `seq`.
|
|
2205
|
+
|
|
2206
|
+
See also
|
|
2207
|
+
--------
|
|
2208
|
+
char.join
|
|
2209
|
+
|
|
2210
|
+
"""
|
|
2211
|
+
return join(self, seq)
|
|
2212
|
+
|
|
2213
|
+
def ljust(self, width, fillchar=' '):
|
|
2214
|
+
"""
|
|
2215
|
+
Return an array with the elements of `self` left-justified in a
|
|
2216
|
+
string of length `width`.
|
|
2217
|
+
|
|
2218
|
+
See also
|
|
2219
|
+
--------
|
|
2220
|
+
char.ljust
|
|
2221
|
+
|
|
2222
|
+
"""
|
|
2223
|
+
return asarray(ljust(self, width, fillchar))
|
|
2224
|
+
|
|
2225
|
+
def lower(self):
|
|
2226
|
+
"""
|
|
2227
|
+
Return an array with the elements of `self` converted to
|
|
2228
|
+
lowercase.
|
|
2229
|
+
|
|
2230
|
+
See also
|
|
2231
|
+
--------
|
|
2232
|
+
char.lower
|
|
2233
|
+
|
|
2234
|
+
"""
|
|
2235
|
+
return asarray(lower(self))
|
|
2236
|
+
|
|
2237
|
+
def lstrip(self, chars=None):
|
|
2238
|
+
"""
|
|
2239
|
+
For each element in `self`, return a copy with the leading characters
|
|
2240
|
+
removed.
|
|
2241
|
+
|
|
2242
|
+
See also
|
|
2243
|
+
--------
|
|
2244
|
+
char.lstrip
|
|
2245
|
+
|
|
2246
|
+
"""
|
|
2247
|
+
return asarray(lstrip(self, chars))
|
|
2248
|
+
|
|
2249
|
+
def partition(self, sep):
|
|
2250
|
+
"""
|
|
2251
|
+
Partition each element in `self` around `sep`.
|
|
2252
|
+
|
|
2253
|
+
See also
|
|
2254
|
+
--------
|
|
2255
|
+
partition
|
|
2256
|
+
"""
|
|
2257
|
+
return asarray(partition(self, sep))
|
|
2258
|
+
|
|
2259
|
+
def replace(self, old, new, count=None):
|
|
2260
|
+
"""
|
|
2261
|
+
For each element in `self`, return a copy of the string with all
|
|
2262
|
+
occurrences of substring `old` replaced by `new`.
|
|
2263
|
+
|
|
2264
|
+
See also
|
|
2265
|
+
--------
|
|
2266
|
+
char.replace
|
|
2267
|
+
|
|
2268
|
+
"""
|
|
2269
|
+
return asarray(replace(self, old, new, count))
|
|
2270
|
+
|
|
2271
|
+
def rfind(self, sub, start=0, end=None):
|
|
2272
|
+
"""
|
|
2273
|
+
For each element in `self`, return the highest index in the string
|
|
2274
|
+
where substring `sub` is found, such that `sub` is contained
|
|
2275
|
+
within [`start`, `end`].
|
|
2276
|
+
|
|
2277
|
+
See also
|
|
2278
|
+
--------
|
|
2279
|
+
char.rfind
|
|
2280
|
+
|
|
2281
|
+
"""
|
|
2282
|
+
return rfind(self, sub, start, end)
|
|
2283
|
+
|
|
2284
|
+
def rindex(self, sub, start=0, end=None):
|
|
2285
|
+
"""
|
|
2286
|
+
Like `rfind`, but raises `ValueError` when the substring `sub` is
|
|
2287
|
+
not found.
|
|
2288
|
+
|
|
2289
|
+
See also
|
|
2290
|
+
--------
|
|
2291
|
+
char.rindex
|
|
2292
|
+
|
|
2293
|
+
"""
|
|
2294
|
+
return rindex(self, sub, start, end)
|
|
2295
|
+
|
|
2296
|
+
def rjust(self, width, fillchar=' '):
|
|
2297
|
+
"""
|
|
2298
|
+
Return an array with the elements of `self`
|
|
2299
|
+
right-justified in a string of length `width`.
|
|
2300
|
+
|
|
2301
|
+
See also
|
|
2302
|
+
--------
|
|
2303
|
+
char.rjust
|
|
2304
|
+
|
|
2305
|
+
"""
|
|
2306
|
+
return asarray(rjust(self, width, fillchar))
|
|
2307
|
+
|
|
2308
|
+
def rpartition(self, sep):
|
|
2309
|
+
"""
|
|
2310
|
+
Partition each element in `self` around `sep`.
|
|
2311
|
+
|
|
2312
|
+
See also
|
|
2313
|
+
--------
|
|
2314
|
+
rpartition
|
|
2315
|
+
"""
|
|
2316
|
+
return asarray(rpartition(self, sep))
|
|
2317
|
+
|
|
2318
|
+
def rsplit(self, sep=None, maxsplit=None):
|
|
2319
|
+
"""
|
|
2320
|
+
For each element in `self`, return a list of the words in
|
|
2321
|
+
the string, using `sep` as the delimiter string.
|
|
2322
|
+
|
|
2323
|
+
See also
|
|
2324
|
+
--------
|
|
2325
|
+
char.rsplit
|
|
2326
|
+
|
|
2327
|
+
"""
|
|
2328
|
+
return rsplit(self, sep, maxsplit)
|
|
2329
|
+
|
|
2330
|
+
def rstrip(self, chars=None):
|
|
2331
|
+
"""
|
|
2332
|
+
For each element in `self`, return a copy with the trailing
|
|
2333
|
+
characters removed.
|
|
2334
|
+
|
|
2335
|
+
See also
|
|
2336
|
+
--------
|
|
2337
|
+
char.rstrip
|
|
2338
|
+
|
|
2339
|
+
"""
|
|
2340
|
+
return asarray(rstrip(self, chars))
|
|
2341
|
+
|
|
2342
|
+
def split(self, sep=None, maxsplit=None):
|
|
2343
|
+
"""
|
|
2344
|
+
For each element in `self`, return a list of the words in the
|
|
2345
|
+
string, using `sep` as the delimiter string.
|
|
2346
|
+
|
|
2347
|
+
See also
|
|
2348
|
+
--------
|
|
2349
|
+
char.split
|
|
2350
|
+
|
|
2351
|
+
"""
|
|
2352
|
+
return split(self, sep, maxsplit)
|
|
2353
|
+
|
|
2354
|
+
def splitlines(self, keepends=None):
|
|
2355
|
+
"""
|
|
2356
|
+
For each element in `self`, return a list of the lines in the
|
|
2357
|
+
element, breaking at line boundaries.
|
|
2358
|
+
|
|
2359
|
+
See also
|
|
2360
|
+
--------
|
|
2361
|
+
char.splitlines
|
|
2362
|
+
|
|
2363
|
+
"""
|
|
2364
|
+
return splitlines(self, keepends)
|
|
2365
|
+
|
|
2366
|
+
def startswith(self, prefix, start=0, end=None):
|
|
2367
|
+
"""
|
|
2368
|
+
Returns a boolean array which is `True` where the string element
|
|
2369
|
+
in `self` starts with `prefix`, otherwise `False`.
|
|
2370
|
+
|
|
2371
|
+
See also
|
|
2372
|
+
--------
|
|
2373
|
+
char.startswith
|
|
2374
|
+
|
|
2375
|
+
"""
|
|
2376
|
+
return startswith(self, prefix, start, end)
|
|
2377
|
+
|
|
2378
|
+
def strip(self, chars=None):
|
|
2379
|
+
"""
|
|
2380
|
+
For each element in `self`, return a copy with the leading and
|
|
2381
|
+
trailing characters removed.
|
|
2382
|
+
|
|
2383
|
+
See also
|
|
2384
|
+
--------
|
|
2385
|
+
char.strip
|
|
2386
|
+
|
|
2387
|
+
"""
|
|
2388
|
+
return asarray(strip(self, chars))
|
|
2389
|
+
|
|
2390
|
+
def swapcase(self):
|
|
2391
|
+
"""
|
|
2392
|
+
For each element in `self`, return a copy of the string with
|
|
2393
|
+
uppercase characters converted to lowercase and vice versa.
|
|
2394
|
+
|
|
2395
|
+
See also
|
|
2396
|
+
--------
|
|
2397
|
+
char.swapcase
|
|
2398
|
+
|
|
2399
|
+
"""
|
|
2400
|
+
return asarray(swapcase(self))
|
|
2401
|
+
|
|
2402
|
+
def title(self):
|
|
2403
|
+
"""
|
|
2404
|
+
For each element in `self`, return a titlecased version of the
|
|
2405
|
+
string: words start with uppercase characters, all remaining cased
|
|
2406
|
+
characters are lowercase.
|
|
2407
|
+
|
|
2408
|
+
See also
|
|
2409
|
+
--------
|
|
2410
|
+
char.title
|
|
2411
|
+
|
|
2412
|
+
"""
|
|
2413
|
+
return asarray(title(self))
|
|
2414
|
+
|
|
2415
|
+
def translate(self, table, deletechars=None):
|
|
2416
|
+
"""
|
|
2417
|
+
For each element in `self`, return a copy of the string where
|
|
2418
|
+
all characters occurring in the optional argument
|
|
2419
|
+
`deletechars` are removed, and the remaining characters have
|
|
2420
|
+
been mapped through the given translation table.
|
|
2421
|
+
|
|
2422
|
+
See also
|
|
2423
|
+
--------
|
|
2424
|
+
char.translate
|
|
2425
|
+
|
|
2426
|
+
"""
|
|
2427
|
+
return asarray(translate(self, table, deletechars))
|
|
2428
|
+
|
|
2429
|
+
def upper(self):
|
|
2430
|
+
"""
|
|
2431
|
+
Return an array with the elements of `self` converted to
|
|
2432
|
+
uppercase.
|
|
2433
|
+
|
|
2434
|
+
See also
|
|
2435
|
+
--------
|
|
2436
|
+
char.upper
|
|
2437
|
+
|
|
2438
|
+
"""
|
|
2439
|
+
return asarray(upper(self))
|
|
2440
|
+
|
|
2441
|
+
def zfill(self, width):
|
|
2442
|
+
"""
|
|
2443
|
+
Return the numeric string left-filled with zeros in a string of
|
|
2444
|
+
length `width`.
|
|
2445
|
+
|
|
2446
|
+
See also
|
|
2447
|
+
--------
|
|
2448
|
+
char.zfill
|
|
2449
|
+
|
|
2450
|
+
"""
|
|
2451
|
+
return asarray(zfill(self, width))
|
|
2452
|
+
|
|
2453
|
+
def isnumeric(self):
|
|
2454
|
+
"""
|
|
2455
|
+
For each element in `self`, return True if there are only
|
|
2456
|
+
numeric characters in the element.
|
|
2457
|
+
|
|
2458
|
+
See also
|
|
2459
|
+
--------
|
|
2460
|
+
char.isnumeric
|
|
2461
|
+
|
|
2462
|
+
"""
|
|
2463
|
+
return isnumeric(self)
|
|
2464
|
+
|
|
2465
|
+
def isdecimal(self):
|
|
2466
|
+
"""
|
|
2467
|
+
For each element in `self`, return True if there are only
|
|
2468
|
+
decimal characters in the element.
|
|
2469
|
+
|
|
2470
|
+
See also
|
|
2471
|
+
--------
|
|
2472
|
+
char.isdecimal
|
|
2473
|
+
|
|
2474
|
+
"""
|
|
2475
|
+
return isdecimal(self)
|
|
2476
|
+
|
|
2477
|
+
|
|
2478
|
+
def array(obj, itemsize=None, copy=True, unicode=None, order=None):
|
|
2479
|
+
"""
|
|
2480
|
+
Create a `chararray`.
|
|
2481
|
+
|
|
2482
|
+
.. note::
|
|
2483
|
+
This class is provided for numarray backward-compatibility.
|
|
2484
|
+
New code (not concerned with numarray compatibility) should use
|
|
2485
|
+
arrays of type `string_` or `unicode_` and use the free functions
|
|
2486
|
+
in :mod:`numpy.char <numpy.core.defchararray>` for fast
|
|
2487
|
+
vectorized string operations instead.
|
|
2488
|
+
|
|
2489
|
+
Versus a regular Numpy array of type `str` or `unicode`, this
|
|
2490
|
+
class adds the following functionality:
|
|
2491
|
+
|
|
2492
|
+
1) values automatically have whitespace removed from the end
|
|
2493
|
+
when indexed
|
|
2494
|
+
|
|
2495
|
+
2) comparison operators automatically remove whitespace from the
|
|
2496
|
+
end when comparing values
|
|
2497
|
+
|
|
2498
|
+
3) vectorized string operations are provided as methods
|
|
2499
|
+
(e.g. `str.endswith`) and infix operators (e.g. ``+, *, %``)
|
|
2500
|
+
|
|
2501
|
+
Parameters
|
|
2502
|
+
----------
|
|
2503
|
+
obj : array of str or unicode-like
|
|
2504
|
+
|
|
2505
|
+
itemsize : int, optional
|
|
2506
|
+
`itemsize` is the number of characters per scalar in the
|
|
2507
|
+
resulting array. If `itemsize` is None, and `obj` is an
|
|
2508
|
+
object array or a Python list, the `itemsize` will be
|
|
2509
|
+
automatically determined. If `itemsize` is provided and `obj`
|
|
2510
|
+
is of type str or unicode, then the `obj` string will be
|
|
2511
|
+
chunked into `itemsize` pieces.
|
|
2512
|
+
|
|
2513
|
+
copy : bool, optional
|
|
2514
|
+
If true (default), then the object is copied. Otherwise, a copy
|
|
2515
|
+
will only be made if __array__ returns a copy, if obj is a
|
|
2516
|
+
nested sequence, or if a copy is needed to satisfy any of the other
|
|
2517
|
+
requirements (`itemsize`, unicode, `order`, etc.).
|
|
2518
|
+
|
|
2519
|
+
unicode : bool, optional
|
|
2520
|
+
When true, the resulting `chararray` can contain Unicode
|
|
2521
|
+
characters, when false only 8-bit characters. If unicode is
|
|
2522
|
+
`None` and `obj` is one of the following:
|
|
2523
|
+
|
|
2524
|
+
- a `chararray`,
|
|
2525
|
+
- an ndarray of type `str` or `unicode`
|
|
2526
|
+
- a Python str or unicode object,
|
|
2527
|
+
|
|
2528
|
+
then the unicode setting of the output array will be
|
|
2529
|
+
automatically determined.
|
|
2530
|
+
|
|
2531
|
+
order : {'C', 'F', 'A'}, optional
|
|
2532
|
+
Specify the order of the array. If order is 'C' (default), then the
|
|
2533
|
+
array will be in C-contiguous order (last-index varies the
|
|
2534
|
+
fastest). If order is 'F', then the returned array
|
|
2535
|
+
will be in Fortran-contiguous order (first-index varies the
|
|
2536
|
+
fastest). If order is 'A', then the returned array may
|
|
2537
|
+
be in any order (either C-, Fortran-contiguous, or even
|
|
2538
|
+
discontiguous).
|
|
2539
|
+
"""
|
|
2540
|
+
if isinstance(obj, (_bytes, _unicode)):
|
|
2541
|
+
if unicode is None:
|
|
2542
|
+
if isinstance(obj, _unicode):
|
|
2543
|
+
unicode = True
|
|
2544
|
+
else:
|
|
2545
|
+
unicode = False
|
|
2546
|
+
|
|
2547
|
+
if itemsize is None:
|
|
2548
|
+
itemsize = _len(obj)
|
|
2549
|
+
shape = _len(obj) // itemsize
|
|
2550
|
+
|
|
2551
|
+
if unicode:
|
|
2552
|
+
if sys.maxunicode == 0xffff:
|
|
2553
|
+
# On a narrow Python build, the buffer for Unicode
|
|
2554
|
+
# strings is UCS2, which doesn't match the buffer for
|
|
2555
|
+
# Numpy Unicode types, which is ALWAYS UCS4.
|
|
2556
|
+
# Therefore, we need to convert the buffer. On Python
|
|
2557
|
+
# 2.6 and later, we can use the utf_32 codec. Earlier
|
|
2558
|
+
# versions don't have that codec, so we convert to a
|
|
2559
|
+
# numerical array that matches the input buffer, and
|
|
2560
|
+
# then use Numpy to convert it to UCS4. All of this
|
|
2561
|
+
# should happen in native endianness.
|
|
2562
|
+
if sys.hexversion >= 0x2060000:
|
|
2563
|
+
obj = obj.encode('utf_32')
|
|
2564
|
+
else:
|
|
2565
|
+
if isinstance(obj, str):
|
|
2566
|
+
ascii = numpy.frombuffer(obj, 'u1')
|
|
2567
|
+
ucs4 = numpy.array(ascii, 'u4')
|
|
2568
|
+
obj = ucs4.data
|
|
2569
|
+
else:
|
|
2570
|
+
ucs2 = numpy.frombuffer(obj, 'u2')
|
|
2571
|
+
ucs4 = numpy.array(ucs2, 'u4')
|
|
2572
|
+
obj = ucs4.data
|
|
2573
|
+
else:
|
|
2574
|
+
obj = _unicode(obj)
|
|
2575
|
+
else:
|
|
2576
|
+
# Let the default Unicode -> string encoding (if any) take
|
|
2577
|
+
# precedence.
|
|
2578
|
+
obj = _bytes(obj)
|
|
2579
|
+
|
|
2580
|
+
return chararray(shape, itemsize=itemsize, unicode=unicode,
|
|
2581
|
+
buffer=obj, order=order)
|
|
2582
|
+
|
|
2583
|
+
if isinstance(obj, (list, tuple)):
|
|
2584
|
+
obj = numpy.asarray(obj)
|
|
2585
|
+
|
|
2586
|
+
if isinstance(obj, ndarray) and issubclass(obj.dtype.type, character):
|
|
2587
|
+
# If we just have a vanilla chararray, create a chararray
|
|
2588
|
+
# view around it.
|
|
2589
|
+
if not isinstance(obj, chararray):
|
|
2590
|
+
obj = obj.view(chararray)
|
|
2591
|
+
|
|
2592
|
+
if itemsize is None:
|
|
2593
|
+
itemsize = obj.itemsize
|
|
2594
|
+
# itemsize is in 8-bit chars, so for Unicode, we need
|
|
2595
|
+
# to divide by the size of a single Unicode character,
|
|
2596
|
+
# which for Numpy is always 4
|
|
2597
|
+
if issubclass(obj.dtype.type, unicode_):
|
|
2598
|
+
itemsize //= 4
|
|
2599
|
+
|
|
2600
|
+
if unicode is None:
|
|
2601
|
+
if issubclass(obj.dtype.type, unicode_):
|
|
2602
|
+
unicode = True
|
|
2603
|
+
else:
|
|
2604
|
+
unicode = False
|
|
2605
|
+
|
|
2606
|
+
if unicode:
|
|
2607
|
+
dtype = unicode_
|
|
2608
|
+
else:
|
|
2609
|
+
dtype = string_
|
|
2610
|
+
|
|
2611
|
+
if order is not None:
|
|
2612
|
+
obj = numpy.asarray(obj, order=order)
|
|
2613
|
+
if (copy or
|
|
2614
|
+
(itemsize != obj.itemsize) or
|
|
2615
|
+
(not unicode and isinstance(obj, unicode_)) or
|
|
2616
|
+
(unicode and isinstance(obj, string_))):
|
|
2617
|
+
obj = obj.astype((dtype, long(itemsize)))
|
|
2618
|
+
return obj
|
|
2619
|
+
|
|
2620
|
+
if isinstance(obj, ndarray) and issubclass(obj.dtype.type, object):
|
|
2621
|
+
if itemsize is None:
|
|
2622
|
+
# Since no itemsize was specified, convert the input array to
|
|
2623
|
+
# a list so the ndarray constructor will automatically
|
|
2624
|
+
# determine the itemsize for us.
|
|
2625
|
+
obj = obj.tolist()
|
|
2626
|
+
# Fall through to the default case
|
|
2627
|
+
|
|
2628
|
+
if unicode:
|
|
2629
|
+
dtype = unicode_
|
|
2630
|
+
else:
|
|
2631
|
+
dtype = string_
|
|
2632
|
+
|
|
2633
|
+
if itemsize is None:
|
|
2634
|
+
val = narray(obj, dtype=dtype, order=order, subok=True)
|
|
2635
|
+
else:
|
|
2636
|
+
val = narray(obj, dtype=(dtype, itemsize), order=order, subok=True)
|
|
2637
|
+
return val.view(chararray)
|
|
2638
|
+
|
|
2639
|
+
|
|
2640
|
+
def asarray(obj, itemsize=None, unicode=None, order=None):
|
|
2641
|
+
"""
|
|
2642
|
+
Convert the input to a `chararray`, copying the data only if
|
|
2643
|
+
necessary.
|
|
2644
|
+
|
|
2645
|
+
Versus a regular Numpy array of type `str` or `unicode`, this
|
|
2646
|
+
class adds the following functionality:
|
|
2647
|
+
|
|
2648
|
+
1) values automatically have whitespace removed from the end
|
|
2649
|
+
when indexed
|
|
2650
|
+
|
|
2651
|
+
2) comparison operators automatically remove whitespace from the
|
|
2652
|
+
end when comparing values
|
|
2653
|
+
|
|
2654
|
+
3) vectorized string operations are provided as methods
|
|
2655
|
+
(e.g. `str.endswith`) and infix operators (e.g. ``+``, ``*``,``%``)
|
|
2656
|
+
|
|
2657
|
+
Parameters
|
|
2658
|
+
----------
|
|
2659
|
+
obj : array of str or unicode-like
|
|
2660
|
+
|
|
2661
|
+
itemsize : int, optional
|
|
2662
|
+
`itemsize` is the number of characters per scalar in the
|
|
2663
|
+
resulting array. If `itemsize` is None, and `obj` is an
|
|
2664
|
+
object array or a Python list, the `itemsize` will be
|
|
2665
|
+
automatically determined. If `itemsize` is provided and `obj`
|
|
2666
|
+
is of type str or unicode, then the `obj` string will be
|
|
2667
|
+
chunked into `itemsize` pieces.
|
|
2668
|
+
|
|
2669
|
+
unicode : bool, optional
|
|
2670
|
+
When true, the resulting `chararray` can contain Unicode
|
|
2671
|
+
characters, when false only 8-bit characters. If unicode is
|
|
2672
|
+
`None` and `obj` is one of the following:
|
|
2673
|
+
|
|
2674
|
+
- a `chararray`,
|
|
2675
|
+
- an ndarray of type `str` or 'unicode`
|
|
2676
|
+
- a Python str or unicode object,
|
|
2677
|
+
|
|
2678
|
+
then the unicode setting of the output array will be
|
|
2679
|
+
automatically determined.
|
|
2680
|
+
|
|
2681
|
+
order : {'C', 'F'}, optional
|
|
2682
|
+
Specify the order of the array. If order is 'C' (default), then the
|
|
2683
|
+
array will be in C-contiguous order (last-index varies the
|
|
2684
|
+
fastest). If order is 'F', then the returned array
|
|
2685
|
+
will be in Fortran-contiguous order (first-index varies the
|
|
2686
|
+
fastest).
|
|
2687
|
+
"""
|
|
2688
|
+
return array(obj, itemsize, copy=False,
|
|
2689
|
+
unicode=unicode, order=order)
|