numpy 1.9.3__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.
Files changed (1590) hide show
  1. numpy-1.10.0.post2/INSTALL.txt +200 -0
  2. numpy-1.10.0.post2/LICENSE.txt +30 -0
  3. numpy-1.10.0.post2/MANIFEST.in +31 -0
  4. numpy-1.10.0.post2/PKG-INFO +47 -0
  5. numpy-1.10.0.post2/cnew.txt +117 -0
  6. numpy-1.10.0.post2/cold.txt +44 -0
  7. numpy-1.10.0.post2/committers.txt +160 -0
  8. numpy-1.10.0.post2/cpre.txt +283 -0
  9. numpy-1.10.0.post2/crel.txt +161 -0
  10. numpy-1.10.0.post2/doc/release/1.10.0-notes.rst +439 -0
  11. numpy-1.10.0.post2/doc/source/conf.py +331 -0
  12. numpy-1.10.0.post2/doc/source/dev/development_environment.rst +211 -0
  13. numpy-1.10.0.post2/doc/source/dev/gitwash/development_workflow.rst +534 -0
  14. numpy-1.10.0.post2/doc/source/dev/gitwash/git_links.inc +95 -0
  15. numpy-1.10.0.post2/doc/source/dev/gitwash/index.rst +14 -0
  16. numpy-1.10.0.post2/doc/source/dev/index.rst +11 -0
  17. numpy-1.10.0.post2/doc/source/reference/arrays.classes.rst +490 -0
  18. numpy-1.10.0.post2/doc/source/reference/arrays.dtypes.rst +536 -0
  19. numpy-1.10.0.post2/doc/source/reference/arrays.indexing.rst +549 -0
  20. numpy-1.10.0.post2/doc/source/reference/arrays.interface.rst +337 -0
  21. numpy-1.10.0.post2/doc/source/reference/arrays.ndarray.rst +622 -0
  22. numpy-1.10.0.post2/doc/source/reference/arrays.scalars.rst +291 -0
  23. numpy-1.10.0.post2/doc/source/reference/c-api.array.rst +3393 -0
  24. numpy-1.10.0.post2/doc/source/reference/c-api.config.rst +103 -0
  25. numpy-1.10.0.post2/doc/source/reference/c-api.coremath.rst +420 -0
  26. numpy-1.10.0.post2/doc/source/reference/c-api.dtype.rst +376 -0
  27. numpy-1.10.0.post2/doc/source/reference/c-api.generalized-ufuncs.rst +191 -0
  28. numpy-1.10.0.post2/doc/source/reference/c-api.iterator.rst +1300 -0
  29. numpy-1.10.0.post2/doc/source/reference/c-api.types-and-structures.rst +1240 -0
  30. numpy-1.10.0.post2/doc/source/reference/c-api.ufunc.rst +413 -0
  31. numpy-1.10.0.post2/doc/source/reference/index.rst +43 -0
  32. numpy-1.10.0.post2/doc/source/reference/internals.code-explanations.rst +615 -0
  33. numpy-1.10.0.post2/doc/source/reference/routines.array-manipulation.rst +115 -0
  34. numpy-1.10.0.post2/doc/source/reference/routines.io.rst +78 -0
  35. numpy-1.10.0.post2/doc/source/reference/routines.linalg.rst +91 -0
  36. numpy-1.10.0.post2/doc/source/reference/routines.ma.rst +407 -0
  37. numpy-1.10.0.post2/doc/source/reference/routines.sort.rst +41 -0
  38. numpy-1.10.0.post2/doc/source/reference/routines.statistics.rst +57 -0
  39. numpy-1.10.0.post2/doc/source/reference/swig.interface-file.rst +1066 -0
  40. numpy-1.10.0.post2/doc/source/reference/swig.testing.rst +167 -0
  41. numpy-1.10.0.post2/doc/source/reference/ufuncs.rst +666 -0
  42. numpy-1.10.0.post2/doc/source/release.rst +20 -0
  43. numpy-1.10.0.post2/doc/source/user/basics.io.genfromtxt.rst +531 -0
  44. numpy-1.10.0.post2/doc/source/user/basics.rec.rst +7 -0
  45. numpy-1.10.0.post2/doc/source/user/c-info.beyond-basics.rst +560 -0
  46. numpy-1.10.0.post2/doc/source/user/c-info.how-to-extend.rst +642 -0
  47. numpy-1.10.0.post2/doc/source/user/c-info.python-as-glue.rst +1177 -0
  48. numpy-1.10.0.post2/doc/source/user/c-info.ufunc-tutorial.rst +1211 -0
  49. numpy-1.10.0.post2/doc/source/user/install.rst +194 -0
  50. numpy-1.10.0.post2/numpy/__init__.py +227 -0
  51. numpy-1.10.0.post2/numpy/_build_utils/README +8 -0
  52. numpy-1.10.0.post2/numpy/_build_utils/apple_accelerate.py +21 -0
  53. numpy-1.10.0.post2/numpy/_build_utils/common.py +138 -0
  54. numpy-1.10.0.post2/numpy/_build_utils/src/apple_sgemv_fix.c +227 -0
  55. numpy-1.10.0.post2/numpy/_build_utils/waf.py +531 -0
  56. numpy-1.10.0.post2/numpy/_import_tools.py +353 -0
  57. numpy-1.10.0.post2/numpy/add_newdocs.py +7611 -0
  58. numpy-1.10.0.post2/numpy/compat/_inspect.py +194 -0
  59. numpy-1.10.0.post2/numpy/compat/py3k.py +88 -0
  60. numpy-1.10.0.post2/numpy/compat/setup.py +12 -0
  61. numpy-1.10.0.post2/numpy/core/__init__.py +89 -0
  62. numpy-1.10.0.post2/numpy/core/_internal.py +761 -0
  63. numpy-1.10.0.post2/numpy/core/_methods.py +133 -0
  64. numpy-1.10.0.post2/numpy/core/arrayprint.py +760 -0
  65. numpy-1.10.0.post2/numpy/core/code_generators/cversions.txt +34 -0
  66. numpy-1.10.0.post2/numpy/core/code_generators/generate_ufunc_api.py +219 -0
  67. numpy-1.10.0.post2/numpy/core/code_generators/generate_umath.py +1017 -0
  68. numpy-1.10.0.post2/numpy/core/code_generators/numpy_api.py +415 -0
  69. numpy-1.10.0.post2/numpy/core/code_generators/ufunc_docstrings.py +3442 -0
  70. numpy-1.10.0.post2/numpy/core/defchararray.py +2689 -0
  71. numpy-1.10.0.post2/numpy/core/fromnumeric.py +3089 -0
  72. numpy-1.10.0.post2/numpy/core/function_base.py +203 -0
  73. numpy-1.10.0.post2/numpy/core/getlimits.py +308 -0
  74. numpy-1.10.0.post2/numpy/core/include/numpy/ndarrayobject.h +246 -0
  75. numpy-1.10.0.post2/numpy/core/include/numpy/ndarraytypes.h +1797 -0
  76. numpy-1.10.0.post2/numpy/core/include/numpy/npy_3kcompat.h +448 -0
  77. numpy-1.10.0.post2/numpy/core/include/numpy/npy_common.h +1051 -0
  78. numpy-1.10.0.post2/numpy/core/include/numpy/npy_cpu.h +92 -0
  79. numpy-1.10.0.post2/numpy/core/include/numpy/npy_endian.h +61 -0
  80. numpy-1.10.0.post2/numpy/core/include/numpy/npy_math.h +525 -0
  81. numpy-1.10.0.post2/numpy/core/include/numpy/numpyconfig.h +36 -0
  82. numpy-1.10.0.post2/numpy/core/machar.py +342 -0
  83. numpy-1.10.0.post2/numpy/core/memmap.py +311 -0
  84. numpy-1.10.0.post2/numpy/core/numeric.py +2893 -0
  85. numpy-1.10.0.post2/numpy/core/numerictypes.py +1036 -0
  86. numpy-1.10.0.post2/numpy/core/records.py +846 -0
  87. numpy-1.10.0.post2/numpy/core/setup.py +983 -0
  88. numpy-1.10.0.post2/numpy/core/setup_common.py +352 -0
  89. numpy-1.10.0.post2/numpy/core/shape_base.py +350 -0
  90. numpy-1.10.0.post2/numpy/core/src/multiarray/alloc.c +244 -0
  91. numpy-1.10.0.post2/numpy/core/src/multiarray/arrayobject.c +1858 -0
  92. numpy-1.10.0.post2/numpy/core/src/multiarray/arraytypes.c.src +4738 -0
  93. numpy-1.10.0.post2/numpy/core/src/multiarray/arraytypes.h +37 -0
  94. numpy-1.10.0.post2/numpy/core/src/multiarray/buffer.c +981 -0
  95. numpy-1.10.0.post2/numpy/core/src/multiarray/calculation.c +1224 -0
  96. numpy-1.10.0.post2/numpy/core/src/multiarray/cblasfuncs.c +812 -0
  97. numpy-1.10.0.post2/numpy/core/src/multiarray/cblasfuncs.h +10 -0
  98. numpy-1.10.0.post2/numpy/core/src/multiarray/common.c +911 -0
  99. numpy-1.10.0.post2/numpy/core/src/multiarray/common.h +250 -0
  100. numpy-1.10.0.post2/numpy/core/src/multiarray/compiled_base.c +1664 -0
  101. numpy-1.10.0.post2/numpy/core/src/multiarray/compiled_base.h +24 -0
  102. numpy-1.10.0.post2/numpy/core/src/multiarray/conversion_utils.c +1217 -0
  103. numpy-1.10.0.post2/numpy/core/src/multiarray/convert.c +590 -0
  104. numpy-1.10.0.post2/numpy/core/src/multiarray/convert_datatype.c +2155 -0
  105. numpy-1.10.0.post2/numpy/core/src/multiarray/ctors.c +3838 -0
  106. numpy-1.10.0.post2/numpy/core/src/multiarray/datetime.c +3821 -0
  107. numpy-1.10.0.post2/numpy/core/src/multiarray/datetime_busday.c +1322 -0
  108. numpy-1.10.0.post2/numpy/core/src/multiarray/datetime_busdaycal.c +552 -0
  109. numpy-1.10.0.post2/numpy/core/src/multiarray/datetime_strings.c +1772 -0
  110. numpy-1.10.0.post2/numpy/core/src/multiarray/descriptor.c +3719 -0
  111. numpy-1.10.0.post2/numpy/core/src/multiarray/dtype_transfer.c +4239 -0
  112. numpy-1.10.0.post2/numpy/core/src/multiarray/einsum.c.src +3005 -0
  113. numpy-1.10.0.post2/numpy/core/src/multiarray/getset.c +986 -0
  114. numpy-1.10.0.post2/numpy/core/src/multiarray/hashdescr.c +318 -0
  115. numpy-1.10.0.post2/numpy/core/src/multiarray/item_selection.c +2413 -0
  116. numpy-1.10.0.post2/numpy/core/src/multiarray/iterators.c +2192 -0
  117. numpy-1.10.0.post2/numpy/core/src/multiarray/lowlevel_strided_loops.c.src +1769 -0
  118. numpy-1.10.0.post2/numpy/core/src/multiarray/mapping.c +3380 -0
  119. numpy-1.10.0.post2/numpy/core/src/multiarray/mapping.h +77 -0
  120. numpy-1.10.0.post2/numpy/core/src/multiarray/methods.c +2514 -0
  121. numpy-1.10.0.post2/numpy/core/src/multiarray/multiarray_tests.c.src +1035 -0
  122. numpy-1.10.0.post2/numpy/core/src/multiarray/multiarraymodule.c +4628 -0
  123. numpy-1.10.0.post2/numpy/core/src/multiarray/multiarraymodule.h +15 -0
  124. numpy-1.10.0.post2/numpy/core/src/multiarray/nditer_api.c +2809 -0
  125. numpy-1.10.0.post2/numpy/core/src/multiarray/nditer_constr.c +3160 -0
  126. numpy-1.10.0.post2/numpy/core/src/multiarray/nditer_pywrap.c +2499 -0
  127. numpy-1.10.0.post2/numpy/core/src/multiarray/number.c +1106 -0
  128. numpy-1.10.0.post2/numpy/core/src/multiarray/number.h +77 -0
  129. numpy-1.10.0.post2/numpy/core/src/multiarray/numpymemoryview.c +308 -0
  130. numpy-1.10.0.post2/numpy/core/src/multiarray/numpyos.c +683 -0
  131. numpy-1.10.0.post2/numpy/core/src/multiarray/scalarapi.c +870 -0
  132. numpy-1.10.0.post2/numpy/core/src/multiarray/scalartypes.c.src +4343 -0
  133. numpy-1.10.0.post2/numpy/core/src/multiarray/scalartypes.h +55 -0
  134. numpy-1.10.0.post2/numpy/core/src/multiarray/shape.c +1131 -0
  135. numpy-1.10.0.post2/numpy/core/src/multiarray/ucsnarrow.c +174 -0
  136. numpy-1.10.0.post2/numpy/core/src/multiarray/vdot.c +180 -0
  137. numpy-1.10.0.post2/numpy/core/src/multiarray/vdot.h +18 -0
  138. numpy-1.10.0.post2/numpy/core/src/npymath/ieee754.c.src +808 -0
  139. numpy-1.10.0.post2/numpy/core/src/npymath/npy_math.c.src +597 -0
  140. numpy-1.10.0.post2/numpy/core/src/npymath/npy_math_complex.c.src +1788 -0
  141. numpy-1.10.0.post2/numpy/core/src/npymath/npy_math_private.h +544 -0
  142. numpy-1.10.0.post2/numpy/core/src/npysort/heapsort.c.src +402 -0
  143. numpy-1.10.0.post2/numpy/core/src/npysort/mergesort.c.src +488 -0
  144. numpy-1.10.0.post2/numpy/core/src/npysort/npysort_common.h +360 -0
  145. numpy-1.10.0.post2/numpy/core/src/npysort/quicksort.c.src +523 -0
  146. numpy-1.10.0.post2/numpy/core/src/npysort/selection.c.src +426 -0
  147. numpy-1.10.0.post2/numpy/core/src/private/npy_cblas.h +584 -0
  148. numpy-1.10.0.post2/numpy/core/src/private/npy_config.h +101 -0
  149. numpy-1.10.0.post2/numpy/core/src/private/npy_import.h +32 -0
  150. numpy-1.10.0.post2/numpy/core/src/private/npy_partition.h.src +122 -0
  151. numpy-1.10.0.post2/numpy/core/src/private/npy_sort.h +196 -0
  152. numpy-1.10.0.post2/numpy/core/src/private/templ_common.h.src +43 -0
  153. numpy-1.10.0.post2/numpy/core/src/private/ufunc_override.h +397 -0
  154. numpy-1.10.0.post2/numpy/core/src/umath/funcs.inc.src +356 -0
  155. numpy-1.10.0.post2/numpy/core/src/umath/loops.c.src +2675 -0
  156. numpy-1.10.0.post2/numpy/core/src/umath/loops.h.src +497 -0
  157. numpy-1.10.0.post2/numpy/core/src/umath/operand_flag_tests.c.src +105 -0
  158. numpy-1.10.0.post2/numpy/core/src/umath/scalarmath.c.src +1738 -0
  159. numpy-1.10.0.post2/numpy/core/src/umath/simd.inc.src +903 -0
  160. numpy-1.10.0.post2/numpy/core/src/umath/test_rational.c.src +1404 -0
  161. numpy-1.10.0.post2/numpy/core/src/umath/ufunc_object.c +5703 -0
  162. numpy-1.10.0.post2/numpy/core/src/umath/ufunc_type_resolution.c +2159 -0
  163. numpy-1.10.0.post2/numpy/core/src/umath/umath_tests.c.src +392 -0
  164. numpy-1.10.0.post2/numpy/core/src/umath/umathmodule.c +443 -0
  165. numpy-1.10.0.post2/numpy/core/tests/test_abc.py +47 -0
  166. numpy-1.10.0.post2/numpy/core/tests/test_api.py +515 -0
  167. numpy-1.10.0.post2/numpy/core/tests/test_arrayprint.py +171 -0
  168. numpy-1.10.0.post2/numpy/core/tests/test_datetime.py +1820 -0
  169. numpy-1.10.0.post2/numpy/core/tests/test_defchararray.py +703 -0
  170. numpy-1.10.0.post2/numpy/core/tests/test_deprecations.py +619 -0
  171. numpy-1.10.0.post2/numpy/core/tests/test_dtype.py +578 -0
  172. numpy-1.10.0.post2/numpy/core/tests/test_einsum.py +627 -0
  173. numpy-1.10.0.post2/numpy/core/tests/test_errstate.py +52 -0
  174. numpy-1.10.0.post2/numpy/core/tests/test_function_base.py +142 -0
  175. numpy-1.10.0.post2/numpy/core/tests/test_getlimits.py +77 -0
  176. numpy-1.10.0.post2/numpy/core/tests/test_half.py +436 -0
  177. numpy-1.10.0.post2/numpy/core/tests/test_indexerrors.py +126 -0
  178. numpy-1.10.0.post2/numpy/core/tests/test_indexing.py +1047 -0
  179. numpy-1.10.0.post2/numpy/core/tests/test_item_selection.py +73 -0
  180. numpy-1.10.0.post2/numpy/core/tests/test_machar.py +29 -0
  181. numpy-1.10.0.post2/numpy/core/tests/test_memmap.py +130 -0
  182. numpy-1.10.0.post2/numpy/core/tests/test_multiarray.py +5924 -0
  183. numpy-1.10.0.post2/numpy/core/tests/test_multiarray_assignment.py +84 -0
  184. numpy-1.10.0.post2/numpy/core/tests/test_nditer.py +2638 -0
  185. numpy-1.10.0.post2/numpy/core/tests/test_numeric.py +2204 -0
  186. numpy-1.10.0.post2/numpy/core/tests/test_numerictypes.py +382 -0
  187. numpy-1.10.0.post2/numpy/core/tests/test_print.py +248 -0
  188. numpy-1.10.0.post2/numpy/core/tests/test_records.py +299 -0
  189. numpy-1.10.0.post2/numpy/core/tests/test_regression.py +2177 -0
  190. numpy-1.10.0.post2/numpy/core/tests/test_scalarinherit.py +41 -0
  191. numpy-1.10.0.post2/numpy/core/tests/test_scalarmath.py +316 -0
  192. numpy-1.10.0.post2/numpy/core/tests/test_shape_base.py +319 -0
  193. numpy-1.10.0.post2/numpy/core/tests/test_ufunc.py +1227 -0
  194. numpy-1.10.0.post2/numpy/core/tests/test_umath.py +1933 -0
  195. numpy-1.10.0.post2/numpy/core/tests/test_umath_complex.py +538 -0
  196. numpy-1.10.0.post2/numpy/core/tests/test_unicode.py +360 -0
  197. numpy-1.10.0.post2/numpy/distutils/__init__.py +23 -0
  198. numpy-1.10.0.post2/numpy/distutils/ccompiler.py +690 -0
  199. numpy-1.10.0.post2/numpy/distutils/command/autodist.py +94 -0
  200. numpy-1.10.0.post2/numpy/distutils/command/build.py +47 -0
  201. numpy-1.10.0.post2/numpy/distutils/command/build_clib.py +295 -0
  202. numpy-1.10.0.post2/numpy/distutils/command/build_ext.py +522 -0
  203. numpy-1.10.0.post2/numpy/distutils/command/config.py +437 -0
  204. numpy-1.10.0.post2/numpy/distutils/exec_command.py +651 -0
  205. numpy-1.10.0.post2/numpy/distutils/fcompiler/compaq.py +128 -0
  206. numpy-1.10.0.post2/numpy/distutils/fcompiler/gnu.py +403 -0
  207. numpy-1.10.0.post2/numpy/distutils/fcompiler/intel.py +217 -0
  208. numpy-1.10.0.post2/numpy/distutils/fcompiler/pg.py +63 -0
  209. numpy-1.10.0.post2/numpy/distutils/fcompiler/sun.py +55 -0
  210. numpy-1.10.0.post2/numpy/distutils/intelccompiler.py +95 -0
  211. numpy-1.10.0.post2/numpy/distutils/lib2def.py +116 -0
  212. numpy-1.10.0.post2/numpy/distutils/mingw32ccompiler.py +599 -0
  213. numpy-1.10.0.post2/numpy/distutils/misc_util.py +2306 -0
  214. numpy-1.10.0.post2/numpy/distutils/msvc9compiler.py +23 -0
  215. numpy-1.10.0.post2/numpy/distutils/msvccompiler.py +17 -0
  216. numpy-1.10.0.post2/numpy/distutils/npy_pkg_config.py +451 -0
  217. numpy-1.10.0.post2/numpy/distutils/system_info.py +2397 -0
  218. numpy-1.10.0.post2/numpy/distutils/tests/f2py_ext/tests/test_fib2.py +12 -0
  219. numpy-1.10.0.post2/numpy/distutils/tests/f2py_f90_ext/tests/test_foo.py +11 -0
  220. numpy-1.10.0.post2/numpy/distutils/tests/gen_ext/tests/test_fib3.py +11 -0
  221. numpy-1.10.0.post2/numpy/distutils/tests/pyrex_ext/tests/test_primes.py +13 -0
  222. numpy-1.10.0.post2/numpy/distutils/tests/swig_ext/__init__.py +1 -0
  223. numpy-1.10.0.post2/numpy/distutils/tests/swig_ext/tests/test_example.py +17 -0
  224. numpy-1.10.0.post2/numpy/distutils/tests/swig_ext/tests/test_example2.py +15 -0
  225. numpy-1.10.0.post2/numpy/distutils/tests/test_fcompiler_gnu.py +60 -0
  226. numpy-1.10.0.post2/numpy/distutils/tests/test_fcompiler_intel.py +36 -0
  227. numpy-1.10.0.post2/numpy/distutils/tests/test_misc_util.py +79 -0
  228. numpy-1.10.0.post2/numpy/distutils/tests/test_npy_pkg_config.py +102 -0
  229. numpy-1.10.0.post2/numpy/distutils/tests/test_system_info.py +209 -0
  230. numpy-1.10.0.post2/numpy/distutils/unixccompiler.py +125 -0
  231. numpy-1.10.0.post2/numpy/doc/byteswapping.py +156 -0
  232. numpy-1.10.0.post2/numpy/doc/creation.py +144 -0
  233. numpy-1.10.0.post2/numpy/doc/glossary.py +423 -0
  234. numpy-1.10.0.post2/numpy/doc/indexing.py +439 -0
  235. numpy-1.10.0.post2/numpy/doc/structured_arrays.py +290 -0
  236. numpy-1.10.0.post2/numpy/f2py/__init__.py +49 -0
  237. numpy-1.10.0.post2/numpy/f2py/__main__.py +25 -0
  238. numpy-1.10.0.post2/numpy/f2py/auxfuncs.py +858 -0
  239. numpy-1.10.0.post2/numpy/f2py/capi_maps.py +851 -0
  240. numpy-1.10.0.post2/numpy/f2py/cb_rules.py +554 -0
  241. numpy-1.10.0.post2/numpy/f2py/cfuncs.py +1261 -0
  242. numpy-1.10.0.post2/numpy/f2py/common_rules.py +150 -0
  243. numpy-1.10.0.post2/numpy/f2py/crackfortran.py +3314 -0
  244. numpy-1.10.0.post2/numpy/f2py/diagnose.py +156 -0
  245. numpy-1.10.0.post2/numpy/f2py/f2py2e.py +656 -0
  246. numpy-1.10.0.post2/numpy/f2py/f2py_testing.py +48 -0
  247. numpy-1.10.0.post2/numpy/f2py/f90mod_rules.py +272 -0
  248. numpy-1.10.0.post2/numpy/f2py/func2subr.py +299 -0
  249. numpy-1.10.0.post2/numpy/f2py/rules.py +1475 -0
  250. numpy-1.10.0.post2/numpy/f2py/setup.py +117 -0
  251. numpy-1.10.0.post2/numpy/f2py/src/fortranobject.c +1037 -0
  252. numpy-1.10.0.post2/numpy/f2py/src/fortranobject.h +162 -0
  253. numpy-1.10.0.post2/numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +223 -0
  254. numpy-1.10.0.post2/numpy/f2py/tests/test_array_from_pyobj.py +593 -0
  255. numpy-1.10.0.post2/numpy/f2py/tests/test_assumed_shape.py +35 -0
  256. numpy-1.10.0.post2/numpy/f2py/tests/test_callback.py +136 -0
  257. numpy-1.10.0.post2/numpy/f2py/tests/test_kind.py +36 -0
  258. numpy-1.10.0.post2/numpy/f2py/tests/test_mixed.py +40 -0
  259. numpy-1.10.0.post2/numpy/f2py/tests/test_regression.py +34 -0
  260. numpy-1.10.0.post2/numpy/f2py/tests/test_return_character.py +148 -0
  261. numpy-1.10.0.post2/numpy/f2py/tests/test_return_complex.py +170 -0
  262. numpy-1.10.0.post2/numpy/f2py/tests/test_return_integer.py +180 -0
  263. numpy-1.10.0.post2/numpy/f2py/tests/test_return_logical.py +189 -0
  264. numpy-1.10.0.post2/numpy/f2py/tests/test_return_real.py +206 -0
  265. numpy-1.10.0.post2/numpy/f2py/tests/test_size.py +44 -0
  266. numpy-1.10.0.post2/numpy/f2py/tests/util.py +367 -0
  267. numpy-1.10.0.post2/numpy/f2py/use_rules.py +115 -0
  268. numpy-1.10.0.post2/numpy/fft/fftpack.c +1501 -0
  269. numpy-1.10.0.post2/numpy/fft/fftpack.h +28 -0
  270. numpy-1.10.0.post2/numpy/fft/fftpack.py +1241 -0
  271. numpy-1.10.0.post2/numpy/fft/fftpack_litemodule.c +363 -0
  272. numpy-1.10.0.post2/numpy/fft/info.py +187 -0
  273. numpy-1.10.0.post2/numpy/fft/setup.py +19 -0
  274. numpy-1.10.0.post2/numpy/fft/tests/test_fftpack.py +166 -0
  275. numpy-1.10.0.post2/numpy/fft/tests/test_helper.py +78 -0
  276. numpy-1.10.0.post2/numpy/lib/_iotools.py +917 -0
  277. numpy-1.10.0.post2/numpy/lib/arraypad.py +1497 -0
  278. numpy-1.10.0.post2/numpy/lib/arraysetops.py +480 -0
  279. numpy-1.10.0.post2/numpy/lib/arrayterator.py +226 -0
  280. numpy-1.10.0.post2/numpy/lib/financial.py +737 -0
  281. numpy-1.10.0.post2/numpy/lib/format.py +814 -0
  282. numpy-1.10.0.post2/numpy/lib/function_base.py +4150 -0
  283. numpy-1.10.0.post2/numpy/lib/index_tricks.py +874 -0
  284. numpy-1.10.0.post2/numpy/lib/info.py +152 -0
  285. numpy-1.10.0.post2/numpy/lib/nanfunctions.py +1237 -0
  286. numpy-1.10.0.post2/numpy/lib/npyio.py +1992 -0
  287. numpy-1.10.0.post2/numpy/lib/polynomial.py +1277 -0
  288. numpy-1.10.0.post2/numpy/lib/recfunctions.py +1003 -0
  289. numpy-1.10.0.post2/numpy/lib/setup.py +12 -0
  290. numpy-1.10.0.post2/numpy/lib/shape_base.py +872 -0
  291. numpy-1.10.0.post2/numpy/lib/stride_tricks.py +200 -0
  292. numpy-1.10.0.post2/numpy/lib/tests/data/py2-objarr.npy +0 -0
  293. numpy-1.10.0.post2/numpy/lib/tests/data/py2-objarr.npz +0 -0
  294. numpy-1.10.0.post2/numpy/lib/tests/data/py3-objarr.npy +0 -0
  295. numpy-1.10.0.post2/numpy/lib/tests/data/py3-objarr.npz +0 -0
  296. numpy-1.10.0.post2/numpy/lib/tests/test__iotools.py +348 -0
  297. numpy-1.10.0.post2/numpy/lib/tests/test__version.py +70 -0
  298. numpy-1.10.0.post2/numpy/lib/tests/test_arraypad.py +1047 -0
  299. numpy-1.10.0.post2/numpy/lib/tests/test_arraysetops.py +309 -0
  300. numpy-1.10.0.post2/numpy/lib/tests/test_financial.py +163 -0
  301. numpy-1.10.0.post2/numpy/lib/tests/test_format.py +841 -0
  302. numpy-1.10.0.post2/numpy/lib/tests/test_function_base.py +2555 -0
  303. numpy-1.10.0.post2/numpy/lib/tests/test_index_tricks.py +326 -0
  304. numpy-1.10.0.post2/numpy/lib/tests/test_io.py +1916 -0
  305. numpy-1.10.0.post2/numpy/lib/tests/test_nanfunctions.py +707 -0
  306. numpy-1.10.0.post2/numpy/lib/tests/test_packbits.py +26 -0
  307. numpy-1.10.0.post2/numpy/lib/tests/test_polynomial.py +188 -0
  308. numpy-1.10.0.post2/numpy/lib/tests/test_recfunctions.py +734 -0
  309. numpy-1.10.0.post2/numpy/lib/tests/test_shape_base.py +386 -0
  310. numpy-1.10.0.post2/numpy/lib/tests/test_stride_tricks.py +405 -0
  311. numpy-1.10.0.post2/numpy/lib/tests/test_twodim_base.py +535 -0
  312. numpy-1.10.0.post2/numpy/lib/tests/test_type_check.py +332 -0
  313. numpy-1.10.0.post2/numpy/lib/twodim_base.py +1007 -0
  314. numpy-1.10.0.post2/numpy/lib/type_check.py +596 -0
  315. numpy-1.10.0.post2/numpy/lib/utils.py +1122 -0
  316. numpy-1.10.0.post2/numpy/linalg/lapack_lite/python_xerbla.c +46 -0
  317. numpy-1.10.0.post2/numpy/linalg/lapack_litemodule.c +358 -0
  318. numpy-1.10.0.post2/numpy/linalg/linalg.py +2406 -0
  319. numpy-1.10.0.post2/numpy/linalg/tests/test_build.py +59 -0
  320. numpy-1.10.0.post2/numpy/linalg/tests/test_linalg.py +1351 -0
  321. numpy-1.10.0.post2/numpy/linalg/tests/test_regression.py +95 -0
  322. numpy-1.10.0.post2/numpy/linalg/umath_linalg.c.src +3236 -0
  323. numpy-1.10.0.post2/numpy/ma/__init__.py +56 -0
  324. numpy-1.10.0.post2/numpy/ma/bench.py +131 -0
  325. numpy-1.10.0.post2/numpy/ma/core.py +7608 -0
  326. numpy-1.10.0.post2/numpy/ma/extras.py +1953 -0
  327. numpy-1.10.0.post2/numpy/ma/mrecords.py +796 -0
  328. numpy-1.10.0.post2/numpy/ma/setup.py +13 -0
  329. numpy-1.10.0.post2/numpy/ma/tests/test_core.py +4100 -0
  330. numpy-1.10.0.post2/numpy/ma/tests/test_extras.py +1132 -0
  331. numpy-1.10.0.post2/numpy/ma/tests/test_mrecords.py +520 -0
  332. numpy-1.10.0.post2/numpy/ma/tests/test_old_ma.py +879 -0
  333. numpy-1.10.0.post2/numpy/ma/tests/test_regression.py +80 -0
  334. numpy-1.10.0.post2/numpy/ma/tests/test_subclassing.py +338 -0
  335. numpy-1.10.0.post2/numpy/ma/testutils.py +289 -0
  336. numpy-1.10.0.post2/numpy/ma/timer_comparison.py +440 -0
  337. numpy-1.10.0.post2/numpy/matlib.py +358 -0
  338. numpy-1.10.0.post2/numpy/matrixlib/defmatrix.py +1232 -0
  339. numpy-1.10.0.post2/numpy/matrixlib/tests/test_defmatrix.py +449 -0
  340. numpy-1.10.0.post2/numpy/matrixlib/tests/test_multiarray.py +23 -0
  341. numpy-1.10.0.post2/numpy/matrixlib/tests/test_numeric.py +23 -0
  342. numpy-1.10.0.post2/numpy/matrixlib/tests/test_regression.py +37 -0
  343. numpy-1.10.0.post2/numpy/polynomial/_polybase.py +962 -0
  344. numpy-1.10.0.post2/numpy/polynomial/chebyshev.py +2056 -0
  345. numpy-1.10.0.post2/numpy/polynomial/hermite.py +1831 -0
  346. numpy-1.10.0.post2/numpy/polynomial/hermite_e.py +1828 -0
  347. numpy-1.10.0.post2/numpy/polynomial/laguerre.py +1780 -0
  348. numpy-1.10.0.post2/numpy/polynomial/legendre.py +1808 -0
  349. numpy-1.10.0.post2/numpy/polynomial/polyutils.py +403 -0
  350. numpy-1.10.0.post2/numpy/random/mtrand/distributions.c +912 -0
  351. numpy-1.10.0.post2/numpy/random/mtrand/mtrand.c +34805 -0
  352. numpy-1.10.0.post2/numpy/random/mtrand/mtrand.pyx +4766 -0
  353. numpy-1.10.0.post2/numpy/random/setup.py +61 -0
  354. numpy-1.10.0.post2/numpy/random/tests/test_random.py +723 -0
  355. numpy-1.10.0.post2/numpy/random/tests/test_regression.py +117 -0
  356. numpy-1.10.0.post2/numpy/setup.py +29 -0
  357. numpy-1.10.0.post2/numpy/testing/__init__.py +15 -0
  358. numpy-1.10.0.post2/numpy/testing/decorators.py +271 -0
  359. numpy-1.10.0.post2/numpy/testing/noseclasses.py +353 -0
  360. numpy-1.10.0.post2/numpy/testing/nosetester.py +511 -0
  361. numpy-1.10.0.post2/numpy/testing/print_coercion_tables.py +91 -0
  362. numpy-1.10.0.post2/numpy/testing/setup.py +20 -0
  363. numpy-1.10.0.post2/numpy/testing/tests/test_decorators.py +182 -0
  364. numpy-1.10.0.post2/numpy/testing/tests/test_utils.py +781 -0
  365. numpy-1.10.0.post2/numpy/testing/utils.py +1831 -0
  366. numpy-1.10.0.post2/numpy/tests/test_ctypeslib.py +106 -0
  367. numpy-1.10.0.post2/numpy/tests/test_matlib.py +55 -0
  368. numpy-1.10.0.post2/numpy/tests/test_scripts.py +69 -0
  369. numpy-1.10.0.post2/numpy/version.py +10 -0
  370. numpy-1.10.0.post2/setup.py +260 -0
  371. numpy-1.10.0.post2/site.cfg.example +193 -0
  372. numpy-1.10.0.post2/tmp.txt +789 -0
  373. numpy-1.10.0.post2/tools/swig/README +145 -0
  374. numpy-1.10.0.post2/tools/swig/numpy.i +3161 -0
  375. numpy-1.10.0.post2/tools/swig/test/Array.i +135 -0
  376. numpy-1.10.0.post2/tools/swig/test/ArrayZ.cxx +131 -0
  377. numpy-1.10.0.post2/tools/swig/test/ArrayZ.h +56 -0
  378. numpy-1.10.0.post2/tools/swig/test/Flat.cxx +36 -0
  379. numpy-1.10.0.post2/tools/swig/test/Flat.h +34 -0
  380. numpy-1.10.0.post2/tools/swig/test/Flat.i +36 -0
  381. numpy-1.10.0.post2/tools/swig/test/Makefile +37 -0
  382. numpy-1.10.0.post2/tools/swig/test/setup.py +71 -0
  383. numpy-1.10.0.post2/tools/swig/test/testArray.py +385 -0
  384. numpy-1.10.0.post2/tools/swig/test/testFarray.py +159 -0
  385. numpy-1.10.0.post2/tools/swig/test/testFlat.py +200 -0
  386. numpy-1.10.0.post2/tools/swig/test/testFortran.py +173 -0
  387. numpy-1.10.0.post2/tools/swig/test/testMatrix.py +362 -0
  388. numpy-1.10.0.post2/tools/swig/test/testSuperTensor.py +388 -0
  389. numpy-1.10.0.post2/tools/swig/test/testTensor.py +402 -0
  390. numpy-1.10.0.post2/tools/swig/test/testVector.py +381 -0
  391. numpy-1.9.3/INSTALL.txt +0 -138
  392. numpy-1.9.3/LICENSE.txt +0 -30
  393. numpy-1.9.3/MANIFEST.in +0 -26
  394. numpy-1.9.3/PKG-INFO +0 -39
  395. numpy-1.9.3/doc/release/1.9.3-notes.rst +0 -23
  396. numpy-1.9.3/doc/source/conf.py +0 -331
  397. numpy-1.9.3/doc/source/dev/gitwash/branch_list.png +0 -0
  398. numpy-1.9.3/doc/source/dev/gitwash/branch_list_compare.png +0 -0
  399. numpy-1.9.3/doc/source/dev/gitwash/development_workflow.rst +0 -568
  400. numpy-1.9.3/doc/source/dev/gitwash/git_links.inc +0 -88
  401. numpy-1.9.3/doc/source/dev/gitwash/index.rst +0 -14
  402. numpy-1.9.3/doc/source/dev/index.rst +0 -10
  403. numpy-1.9.3/doc/source/reference/arrays.classes.rst +0 -427
  404. numpy-1.9.3/doc/source/reference/arrays.dtypes.rst +0 -534
  405. numpy-1.9.3/doc/source/reference/arrays.indexing.rst +0 -550
  406. numpy-1.9.3/doc/source/reference/arrays.interface.rst +0 -336
  407. numpy-1.9.3/doc/source/reference/arrays.ndarray.rst +0 -609
  408. numpy-1.9.3/doc/source/reference/arrays.scalars.rst +0 -291
  409. numpy-1.9.3/doc/source/reference/c-api.array.rst +0 -3362
  410. numpy-1.9.3/doc/source/reference/c-api.config.rst +0 -103
  411. numpy-1.9.3/doc/source/reference/c-api.coremath.rst +0 -420
  412. numpy-1.9.3/doc/source/reference/c-api.dtype.rst +0 -376
  413. numpy-1.9.3/doc/source/reference/c-api.generalized-ufuncs.rst +0 -171
  414. numpy-1.9.3/doc/source/reference/c-api.iterator.rst +0 -1298
  415. numpy-1.9.3/doc/source/reference/c-api.types-and-structures.rst +0 -1204
  416. numpy-1.9.3/doc/source/reference/c-api.ufunc.rst +0 -399
  417. numpy-1.9.3/doc/source/reference/index.rst +0 -44
  418. numpy-1.9.3/doc/source/reference/internals.code-explanations.rst +0 -666
  419. numpy-1.9.3/doc/source/reference/routines.array-manipulation.rst +0 -113
  420. numpy-1.9.3/doc/source/reference/routines.io.rst +0 -74
  421. numpy-1.9.3/doc/source/reference/routines.linalg.rst +0 -88
  422. numpy-1.9.3/doc/source/reference/routines.ma.rst +0 -405
  423. numpy-1.9.3/doc/source/reference/routines.sort.rst +0 -42
  424. numpy-1.9.3/doc/source/reference/routines.statistics.rst +0 -55
  425. numpy-1.9.3/doc/source/reference/swig.interface-file.rst +0 -1055
  426. numpy-1.9.3/doc/source/reference/swig.testing.rst +0 -166
  427. numpy-1.9.3/doc/source/reference/ufuncs.rst +0 -651
  428. numpy-1.9.3/doc/source/release.rst +0 -19
  429. numpy-1.9.3/doc/source/user/basics.io.genfromtxt.rst +0 -531
  430. numpy-1.9.3/doc/source/user/basics.rec.rst +0 -7
  431. numpy-1.9.3/doc/source/user/c-info.beyond-basics.rst +0 -560
  432. numpy-1.9.3/doc/source/user/c-info.how-to-extend.rst +0 -642
  433. numpy-1.9.3/doc/source/user/c-info.python-as-glue.rst +0 -1528
  434. numpy-1.9.3/doc/source/user/c-info.ufunc-tutorial.rst +0 -1211
  435. numpy-1.9.3/doc/source/user/install.rst +0 -180
  436. numpy-1.9.3/numpy/__init__.py +0 -216
  437. numpy-1.9.3/numpy/_import_tools.py +0 -348
  438. numpy-1.9.3/numpy/add_newdocs.py +0 -7518
  439. numpy-1.9.3/numpy/compat/_inspect.py +0 -221
  440. numpy-1.9.3/numpy/compat/py3k.py +0 -89
  441. numpy-1.9.3/numpy/compat/setup.py +0 -12
  442. numpy-1.9.3/numpy/core/__init__.py +0 -78
  443. numpy-1.9.3/numpy/core/_internal.py +0 -570
  444. numpy-1.9.3/numpy/core/_methods.py +0 -134
  445. numpy-1.9.3/numpy/core/arrayprint.py +0 -752
  446. numpy-1.9.3/numpy/core/blasdot/_dotblas.c +0 -1255
  447. numpy-1.9.3/numpy/core/blasdot/apple_sgemv_patch.c +0 -216
  448. numpy-1.9.3/numpy/core/blasdot/cblas.h +0 -578
  449. numpy-1.9.3/numpy/core/code_generators/cversions.txt +0 -31
  450. numpy-1.9.3/numpy/core/code_generators/generate_ufunc_api.py +0 -219
  451. numpy-1.9.3/numpy/core/code_generators/generate_umath.py +0 -972
  452. numpy-1.9.3/numpy/core/code_generators/numpy_api.py +0 -412
  453. numpy-1.9.3/numpy/core/code_generators/ufunc_docstrings.py +0 -3419
  454. numpy-1.9.3/numpy/core/defchararray.py +0 -2687
  455. numpy-1.9.3/numpy/core/fromnumeric.py +0 -2938
  456. numpy-1.9.3/numpy/core/function_base.py +0 -190
  457. numpy-1.9.3/numpy/core/getlimits.py +0 -306
  458. numpy-1.9.3/numpy/core/include/numpy/fenv/fenv.c +0 -38
  459. numpy-1.9.3/numpy/core/include/numpy/fenv/fenv.h +0 -224
  460. numpy-1.9.3/numpy/core/include/numpy/ndarrayobject.h +0 -237
  461. numpy-1.9.3/numpy/core/include/numpy/ndarraytypes.h +0 -1820
  462. numpy-1.9.3/numpy/core/include/numpy/npy_3kcompat.h +0 -506
  463. numpy-1.9.3/numpy/core/include/numpy/npy_common.h +0 -1038
  464. numpy-1.9.3/numpy/core/include/numpy/npy_cpu.h +0 -122
  465. numpy-1.9.3/numpy/core/include/numpy/npy_endian.h +0 -49
  466. numpy-1.9.3/numpy/core/include/numpy/npy_math.h +0 -479
  467. numpy-1.9.3/numpy/core/include/numpy/numpyconfig.h +0 -35
  468. numpy-1.9.3/numpy/core/machar.py +0 -338
  469. numpy-1.9.3/numpy/core/memmap.py +0 -308
  470. numpy-1.9.3/numpy/core/numeric.py +0 -2842
  471. numpy-1.9.3/numpy/core/numerictypes.py +0 -1042
  472. numpy-1.9.3/numpy/core/records.py +0 -804
  473. numpy-1.9.3/numpy/core/setup.py +0 -1016
  474. numpy-1.9.3/numpy/core/setup_common.py +0 -330
  475. numpy-1.9.3/numpy/core/shape_base.py +0 -277
  476. numpy-1.9.3/numpy/core/src/multiarray/alloc.c +0 -241
  477. numpy-1.9.3/numpy/core/src/multiarray/arrayobject.c +0 -1791
  478. numpy-1.9.3/numpy/core/src/multiarray/arraytypes.c.src +0 -4372
  479. numpy-1.9.3/numpy/core/src/multiarray/arraytypes.h +0 -13
  480. numpy-1.9.3/numpy/core/src/multiarray/buffer.c +0 -954
  481. numpy-1.9.3/numpy/core/src/multiarray/calculation.c +0 -1229
  482. numpy-1.9.3/numpy/core/src/multiarray/common.c +0 -798
  483. numpy-1.9.3/numpy/core/src/multiarray/common.h +0 -328
  484. numpy-1.9.3/numpy/core/src/multiarray/conversion_utils.c +0 -1240
  485. numpy-1.9.3/numpy/core/src/multiarray/convert.c +0 -589
  486. numpy-1.9.3/numpy/core/src/multiarray/convert_datatype.c +0 -2199
  487. numpy-1.9.3/numpy/core/src/multiarray/ctors.c +0 -3785
  488. numpy-1.9.3/numpy/core/src/multiarray/datetime.c +0 -3823
  489. numpy-1.9.3/numpy/core/src/multiarray/datetime_busday.c +0 -1322
  490. numpy-1.9.3/numpy/core/src/multiarray/datetime_busdaycal.c +0 -552
  491. numpy-1.9.3/numpy/core/src/multiarray/datetime_strings.c +0 -1772
  492. numpy-1.9.3/numpy/core/src/multiarray/descriptor.c +0 -3658
  493. numpy-1.9.3/numpy/core/src/multiarray/dtype_transfer.c +0 -4232
  494. numpy-1.9.3/numpy/core/src/multiarray/einsum.c.src +0 -3013
  495. numpy-1.9.3/numpy/core/src/multiarray/getset.c +0 -984
  496. numpy-1.9.3/numpy/core/src/multiarray/hashdescr.c +0 -319
  497. numpy-1.9.3/numpy/core/src/multiarray/item_selection.c +0 -2711
  498. numpy-1.9.3/numpy/core/src/multiarray/iterators.c +0 -2160
  499. numpy-1.9.3/numpy/core/src/multiarray/lowlevel_strided_loops.c.src +0 -1767
  500. numpy-1.9.3/numpy/core/src/multiarray/mapping.c +0 -3316
  501. numpy-1.9.3/numpy/core/src/multiarray/mapping.h +0 -73
  502. numpy-1.9.3/numpy/core/src/multiarray/methods.c +0 -2497
  503. numpy-1.9.3/numpy/core/src/multiarray/multiarray_tests.c.src +0 -977
  504. numpy-1.9.3/numpy/core/src/multiarray/multiarraymodule.c +0 -4200
  505. numpy-1.9.3/numpy/core/src/multiarray/multiarraymodule.h +0 -4
  506. numpy-1.9.3/numpy/core/src/multiarray/nditer_api.c +0 -2809
  507. numpy-1.9.3/numpy/core/src/multiarray/nditer_constr.c +0 -3159
  508. numpy-1.9.3/numpy/core/src/multiarray/nditer_pywrap.c +0 -2492
  509. numpy-1.9.3/numpy/core/src/multiarray/number.c +0 -1057
  510. numpy-1.9.3/numpy/core/src/multiarray/number.h +0 -76
  511. numpy-1.9.3/numpy/core/src/multiarray/numpymemoryview.c +0 -309
  512. numpy-1.9.3/numpy/core/src/multiarray/numpyos.c +0 -683
  513. numpy-1.9.3/numpy/core/src/multiarray/scalarapi.c +0 -861
  514. numpy-1.9.3/numpy/core/src/multiarray/scalartypes.c.src +0 -4270
  515. numpy-1.9.3/numpy/core/src/multiarray/scalartypes.h +0 -52
  516. numpy-1.9.3/numpy/core/src/multiarray/shape.c +0 -1141
  517. numpy-1.9.3/numpy/core/src/multiarray/ucsnarrow.c +0 -173
  518. numpy-1.9.3/numpy/core/src/npymath/ieee754.c.src +0 -814
  519. numpy-1.9.3/numpy/core/src/npymath/npy_math.c.src +0 -527
  520. numpy-1.9.3/numpy/core/src/npymath/npy_math_complex.c.src +0 -291
  521. numpy-1.9.3/numpy/core/src/npymath/npy_math_private.h +0 -539
  522. numpy-1.9.3/numpy/core/src/npysort/heapsort.c.src +0 -341
  523. numpy-1.9.3/numpy/core/src/npysort/mergesort.c.src +0 -428
  524. numpy-1.9.3/numpy/core/src/npysort/npysort_common.h +0 -367
  525. numpy-1.9.3/numpy/core/src/npysort/quicksort.c.src +0 -363
  526. numpy-1.9.3/numpy/core/src/npysort/selection.c.src +0 -474
  527. numpy-1.9.3/numpy/core/src/private/npy_config.h +0 -68
  528. numpy-1.9.3/numpy/core/src/private/npy_partition.h.src +0 -138
  529. numpy-1.9.3/numpy/core/src/private/npy_sort.h +0 -194
  530. numpy-1.9.3/numpy/core/src/private/scalarmathmodule.h.src +0 -42
  531. numpy-1.9.3/numpy/core/src/private/ufunc_override.h +0 -384
  532. numpy-1.9.3/numpy/core/src/scalarmathmodule.c.src +0 -1980
  533. numpy-1.9.3/numpy/core/src/umath/funcs.inc.src +0 -715
  534. numpy-1.9.3/numpy/core/src/umath/loops.c.src +0 -2654
  535. numpy-1.9.3/numpy/core/src/umath/loops.h.src +0 -501
  536. numpy-1.9.3/numpy/core/src/umath/operand_flag_tests.c.src +0 -105
  537. numpy-1.9.3/numpy/core/src/umath/simd.inc.src +0 -881
  538. numpy-1.9.3/numpy/core/src/umath/test_rational.c.src +0 -1404
  539. numpy-1.9.3/numpy/core/src/umath/ufunc_object.c +0 -5520
  540. numpy-1.9.3/numpy/core/src/umath/ufunc_type_resolution.c +0 -2164
  541. numpy-1.9.3/numpy/core/src/umath/umath_tests.c.src +0 -341
  542. numpy-1.9.3/numpy/core/src/umath/umathmodule.c +0 -561
  543. numpy-1.9.3/numpy/core/tests/test_abc.py +0 -45
  544. numpy-1.9.3/numpy/core/tests/test_api.py +0 -514
  545. numpy-1.9.3/numpy/core/tests/test_arrayprint.py +0 -167
  546. numpy-1.9.3/numpy/core/tests/test_blasdot.py +0 -249
  547. numpy-1.9.3/numpy/core/tests/test_datetime.py +0 -1781
  548. numpy-1.9.3/numpy/core/tests/test_defchararray.py +0 -642
  549. numpy-1.9.3/numpy/core/tests/test_deprecations.py +0 -512
  550. numpy-1.9.3/numpy/core/tests/test_dtype.py +0 -542
  551. numpy-1.9.3/numpy/core/tests/test_einsum.py +0 -583
  552. numpy-1.9.3/numpy/core/tests/test_errstate.py +0 -51
  553. numpy-1.9.3/numpy/core/tests/test_function_base.py +0 -111
  554. numpy-1.9.3/numpy/core/tests/test_getlimits.py +0 -86
  555. numpy-1.9.3/numpy/core/tests/test_half.py +0 -439
  556. numpy-1.9.3/numpy/core/tests/test_indexerrors.py +0 -127
  557. numpy-1.9.3/numpy/core/tests/test_indexing.py +0 -1014
  558. numpy-1.9.3/numpy/core/tests/test_item_selection.py +0 -70
  559. numpy-1.9.3/numpy/core/tests/test_machar.py +0 -30
  560. numpy-1.9.3/numpy/core/tests/test_memmap.py +0 -127
  561. numpy-1.9.3/numpy/core/tests/test_multiarray.py +0 -4645
  562. numpy-1.9.3/numpy/core/tests/test_multiarray_assignment.py +0 -80
  563. numpy-1.9.3/numpy/core/tests/test_nditer.py +0 -2630
  564. numpy-1.9.3/numpy/core/tests/test_numeric.py +0 -2117
  565. numpy-1.9.3/numpy/core/tests/test_numerictypes.py +0 -377
  566. numpy-1.9.3/numpy/core/tests/test_print.py +0 -245
  567. numpy-1.9.3/numpy/core/tests/test_records.py +0 -185
  568. numpy-1.9.3/numpy/core/tests/test_regression.py +0 -2115
  569. numpy-1.9.3/numpy/core/tests/test_scalarinherit.py +0 -34
  570. numpy-1.9.3/numpy/core/tests/test_scalarmath.py +0 -275
  571. numpy-1.9.3/numpy/core/tests/test_shape_base.py +0 -250
  572. numpy-1.9.3/numpy/core/tests/test_ufunc.py +0 -1153
  573. numpy-1.9.3/numpy/core/tests/test_umath.py +0 -1695
  574. numpy-1.9.3/numpy/core/tests/test_umath_complex.py +0 -537
  575. numpy-1.9.3/numpy/core/tests/test_unicode.py +0 -357
  576. numpy-1.9.3/numpy/distutils/__init__.py +0 -39
  577. numpy-1.9.3/numpy/distutils/ccompiler.py +0 -656
  578. numpy-1.9.3/numpy/distutils/command/autodist.py +0 -43
  579. numpy-1.9.3/numpy/distutils/command/build.py +0 -39
  580. numpy-1.9.3/numpy/distutils/command/build_clib.py +0 -284
  581. numpy-1.9.3/numpy/distutils/command/build_ext.py +0 -515
  582. numpy-1.9.3/numpy/distutils/command/config.py +0 -476
  583. numpy-1.9.3/numpy/distutils/exec_command.py +0 -618
  584. numpy-1.9.3/numpy/distutils/fcompiler/compaq.py +0 -128
  585. numpy-1.9.3/numpy/distutils/fcompiler/gnu.py +0 -390
  586. numpy-1.9.3/numpy/distutils/fcompiler/intel.py +0 -205
  587. numpy-1.9.3/numpy/distutils/fcompiler/pg.py +0 -60
  588. numpy-1.9.3/numpy/distutils/fcompiler/sun.py +0 -52
  589. numpy-1.9.3/numpy/distutils/intelccompiler.py +0 -45
  590. numpy-1.9.3/numpy/distutils/lib2def.py +0 -116
  591. numpy-1.9.3/numpy/distutils/mingw32ccompiler.py +0 -582
  592. numpy-1.9.3/numpy/distutils/misc_util.py +0 -2271
  593. numpy-1.9.3/numpy/distutils/npy_pkg_config.py +0 -464
  594. numpy-1.9.3/numpy/distutils/system_info.py +0 -2319
  595. numpy-1.9.3/numpy/distutils/tests/f2py_ext/tests/test_fib2.py +0 -13
  596. numpy-1.9.3/numpy/distutils/tests/f2py_f90_ext/tests/test_foo.py +0 -12
  597. numpy-1.9.3/numpy/distutils/tests/gen_ext/tests/test_fib3.py +0 -12
  598. numpy-1.9.3/numpy/distutils/tests/pyrex_ext/tests/test_primes.py +0 -14
  599. numpy-1.9.3/numpy/distutils/tests/swig_ext/tests/test_example.py +0 -18
  600. numpy-1.9.3/numpy/distutils/tests/swig_ext/tests/test_example2.py +0 -16
  601. numpy-1.9.3/numpy/distutils/tests/test_fcompiler_gnu.py +0 -53
  602. numpy-1.9.3/numpy/distutils/tests/test_fcompiler_intel.py +0 -36
  603. numpy-1.9.3/numpy/distutils/tests/test_misc_util.py +0 -75
  604. numpy-1.9.3/numpy/distutils/tests/test_npy_pkg_config.py +0 -98
  605. numpy-1.9.3/numpy/distutils/unixccompiler.py +0 -113
  606. numpy-1.9.3/numpy/doc/byteswapping.py +0 -147
  607. numpy-1.9.3/numpy/doc/creation.py +0 -144
  608. numpy-1.9.3/numpy/doc/glossary.py +0 -418
  609. numpy-1.9.3/numpy/doc/indexing.py +0 -437
  610. numpy-1.9.3/numpy/doc/structured_arrays.py +0 -223
  611. numpy-1.9.3/numpy/f2py/__init__.py +0 -49
  612. numpy-1.9.3/numpy/f2py/auxfuncs.py +0 -711
  613. numpy-1.9.3/numpy/f2py/capi_maps.py +0 -773
  614. numpy-1.9.3/numpy/f2py/cb_rules.py +0 -539
  615. numpy-1.9.3/numpy/f2py/cfuncs.py +0 -1224
  616. numpy-1.9.3/numpy/f2py/common_rules.py +0 -132
  617. numpy-1.9.3/numpy/f2py/crackfortran.py +0 -2870
  618. numpy-1.9.3/numpy/f2py/diagnose.py +0 -149
  619. numpy-1.9.3/numpy/f2py/f2py2e.py +0 -598
  620. numpy-1.9.3/numpy/f2py/f2py_testing.py +0 -46
  621. numpy-1.9.3/numpy/f2py/f90mod_rules.py +0 -246
  622. numpy-1.9.3/numpy/f2py/func2subr.py +0 -291
  623. numpy-1.9.3/numpy/f2py/rules.py +0 -1448
  624. numpy-1.9.3/numpy/f2py/setup.py +0 -129
  625. numpy-1.9.3/numpy/f2py/src/fortranobject.c +0 -972
  626. numpy-1.9.3/numpy/f2py/src/fortranobject.h +0 -162
  627. numpy-1.9.3/numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +0 -223
  628. numpy-1.9.3/numpy/f2py/tests/test_array_from_pyobj.py +0 -559
  629. numpy-1.9.3/numpy/f2py/tests/test_assumed_shape.py +0 -37
  630. numpy-1.9.3/numpy/f2py/tests/test_callback.py +0 -132
  631. numpy-1.9.3/numpy/f2py/tests/test_kind.py +0 -36
  632. numpy-1.9.3/numpy/f2py/tests/test_mixed.py +0 -41
  633. numpy-1.9.3/numpy/f2py/tests/test_regression.py +0 -32
  634. numpy-1.9.3/numpy/f2py/tests/test_return_character.py +0 -142
  635. numpy-1.9.3/numpy/f2py/tests/test_return_complex.py +0 -169
  636. numpy-1.9.3/numpy/f2py/tests/test_return_integer.py +0 -178
  637. numpy-1.9.3/numpy/f2py/tests/test_return_logical.py +0 -187
  638. numpy-1.9.3/numpy/f2py/tests/test_return_real.py +0 -203
  639. numpy-1.9.3/numpy/f2py/tests/test_size.py +0 -47
  640. numpy-1.9.3/numpy/f2py/tests/util.py +0 -353
  641. numpy-1.9.3/numpy/f2py/use_rules.py +0 -109
  642. numpy-1.9.3/numpy/fft/fftpack.c +0 -1501
  643. numpy-1.9.3/numpy/fft/fftpack.h +0 -28
  644. numpy-1.9.3/numpy/fft/fftpack.py +0 -1169
  645. numpy-1.9.3/numpy/fft/fftpack_litemodule.c +0 -371
  646. numpy-1.9.3/numpy/fft/info.py +0 -179
  647. numpy-1.9.3/numpy/fft/setup.py +0 -20
  648. numpy-1.9.3/numpy/fft/tests/test_fftpack.py +0 -75
  649. numpy-1.9.3/numpy/fft/tests/test_helper.py +0 -78
  650. numpy-1.9.3/numpy/lib/_iotools.py +0 -891
  651. numpy-1.9.3/numpy/lib/arraypad.py +0 -1475
  652. numpy-1.9.3/numpy/lib/arraysetops.py +0 -464
  653. numpy-1.9.3/numpy/lib/arrayterator.py +0 -226
  654. numpy-1.9.3/numpy/lib/financial.py +0 -737
  655. numpy-1.9.3/numpy/lib/format.py +0 -771
  656. numpy-1.9.3/numpy/lib/function_base.py +0 -3884
  657. numpy-1.9.3/numpy/lib/index_tricks.py +0 -869
  658. numpy-1.9.3/numpy/lib/info.py +0 -151
  659. numpy-1.9.3/numpy/lib/nanfunctions.py +0 -1158
  660. numpy-1.9.3/numpy/lib/npyio.py +0 -1871
  661. numpy-1.9.3/numpy/lib/polynomial.py +0 -1271
  662. numpy-1.9.3/numpy/lib/recfunctions.py +0 -1003
  663. numpy-1.9.3/numpy/lib/setup.py +0 -23
  664. numpy-1.9.3/numpy/lib/shape_base.py +0 -865
  665. numpy-1.9.3/numpy/lib/src/_compiled_base.c +0 -1761
  666. numpy-1.9.3/numpy/lib/stride_tricks.py +0 -123
  667. numpy-1.9.3/numpy/lib/tests/test__iotools.py +0 -326
  668. numpy-1.9.3/numpy/lib/tests/test__version.py +0 -57
  669. numpy-1.9.3/numpy/lib/tests/test_arraypad.py +0 -560
  670. numpy-1.9.3/numpy/lib/tests/test_arraysetops.py +0 -301
  671. numpy-1.9.3/numpy/lib/tests/test_financial.py +0 -160
  672. numpy-1.9.3/numpy/lib/tests/test_format.py +0 -716
  673. numpy-1.9.3/numpy/lib/tests/test_function_base.py +0 -2145
  674. numpy-1.9.3/numpy/lib/tests/test_index_tricks.py +0 -289
  675. numpy-1.9.3/numpy/lib/tests/test_io.py +0 -1754
  676. numpy-1.9.3/numpy/lib/tests/test_nanfunctions.py +0 -774
  677. numpy-1.9.3/numpy/lib/tests/test_polynomial.py +0 -177
  678. numpy-1.9.3/numpy/lib/tests/test_recfunctions.py +0 -705
  679. numpy-1.9.3/numpy/lib/tests/test_shape_base.py +0 -368
  680. numpy-1.9.3/numpy/lib/tests/test_stride_tricks.py +0 -238
  681. numpy-1.9.3/numpy/lib/tests/test_twodim_base.py +0 -504
  682. numpy-1.9.3/numpy/lib/tests/test_type_check.py +0 -328
  683. numpy-1.9.3/numpy/lib/twodim_base.py +0 -1003
  684. numpy-1.9.3/numpy/lib/type_check.py +0 -605
  685. numpy-1.9.3/numpy/lib/utils.py +0 -1176
  686. numpy-1.9.3/numpy/linalg/lapack_lite/python_xerbla.c +0 -47
  687. numpy-1.9.3/numpy/linalg/lapack_litemodule.c +0 -362
  688. numpy-1.9.3/numpy/linalg/linalg.py +0 -2136
  689. numpy-1.9.3/numpy/linalg/tests/test_build.py +0 -53
  690. numpy-1.9.3/numpy/linalg/tests/test_linalg.py +0 -1156
  691. numpy-1.9.3/numpy/linalg/tests/test_regression.py +0 -90
  692. numpy-1.9.3/numpy/linalg/umath_linalg.c.src +0 -3210
  693. numpy-1.9.3/numpy/ma/__init__.py +0 -58
  694. numpy-1.9.3/numpy/ma/bench.py +0 -166
  695. numpy-1.9.3/numpy/ma/core.py +0 -7374
  696. numpy-1.9.3/numpy/ma/extras.py +0 -1932
  697. numpy-1.9.3/numpy/ma/mrecords.py +0 -734
  698. numpy-1.9.3/numpy/ma/setup.py +0 -20
  699. numpy-1.9.3/numpy/ma/tests/test_core.py +0 -3706
  700. numpy-1.9.3/numpy/ma/tests/test_extras.py +0 -954
  701. numpy-1.9.3/numpy/ma/tests/test_mrecords.py +0 -521
  702. numpy-1.9.3/numpy/ma/tests/test_old_ma.py +0 -869
  703. numpy-1.9.3/numpy/ma/tests/test_regression.py +0 -75
  704. numpy-1.9.3/numpy/ma/tests/test_subclassing.py +0 -236
  705. numpy-1.9.3/numpy/ma/testutils.py +0 -240
  706. numpy-1.9.3/numpy/ma/timer_comparison.py +0 -459
  707. numpy-1.9.3/numpy/matlib.py +0 -358
  708. numpy-1.9.3/numpy/matrixlib/defmatrix.py +0 -1094
  709. numpy-1.9.3/numpy/matrixlib/tests/test_defmatrix.py +0 -400
  710. numpy-1.9.3/numpy/matrixlib/tests/test_multiarray.py +0 -18
  711. numpy-1.9.3/numpy/matrixlib/tests/test_numeric.py +0 -10
  712. numpy-1.9.3/numpy/matrixlib/tests/test_regression.py +0 -34
  713. numpy-1.9.3/numpy/polynomial/_polybase.py +0 -962
  714. numpy-1.9.3/numpy/polynomial/chebyshev.py +0 -2056
  715. numpy-1.9.3/numpy/polynomial/hermite.py +0 -1789
  716. numpy-1.9.3/numpy/polynomial/hermite_e.py +0 -1786
  717. numpy-1.9.3/numpy/polynomial/laguerre.py +0 -1781
  718. numpy-1.9.3/numpy/polynomial/legendre.py +0 -1809
  719. numpy-1.9.3/numpy/polynomial/polytemplate.py +0 -927
  720. numpy-1.9.3/numpy/polynomial/polyutils.py +0 -403
  721. numpy-1.9.3/numpy/random/mtrand/distributions.c +0 -892
  722. numpy-1.9.3/numpy/random/mtrand/mtrand.c +0 -36656
  723. numpy-1.9.3/numpy/random/mtrand/mtrand.pyx +0 -4706
  724. numpy-1.9.3/numpy/random/setup.py +0 -74
  725. numpy-1.9.3/numpy/random/tests/test_random.py +0 -707
  726. numpy-1.9.3/numpy/random/tests/test_regression.py +0 -86
  727. numpy-1.9.3/numpy/setup.py +0 -27
  728. numpy-1.9.3/numpy/testing/__init__.py +0 -16
  729. numpy-1.9.3/numpy/testing/decorators.py +0 -271
  730. numpy-1.9.3/numpy/testing/noseclasses.py +0 -353
  731. numpy-1.9.3/numpy/testing/nosetester.py +0 -504
  732. numpy-1.9.3/numpy/testing/print_coercion_tables.py +0 -89
  733. numpy-1.9.3/numpy/testing/setup.py +0 -20
  734. numpy-1.9.3/numpy/testing/tests/test_decorators.py +0 -185
  735. numpy-1.9.3/numpy/testing/tests/test_utils.py +0 -558
  736. numpy-1.9.3/numpy/testing/utils.py +0 -1715
  737. numpy-1.9.3/numpy/tests/test_ctypeslib.py +0 -102
  738. numpy-1.9.3/numpy/tests/test_matlib.py +0 -55
  739. numpy-1.9.3/numpy/version.py +0 -10
  740. numpy-1.9.3/setup.py +0 -251
  741. numpy-1.9.3/site.cfg.example +0 -157
  742. numpy-1.9.3/tools/swig/README +0 -135
  743. numpy-1.9.3/tools/swig/numpy.i +0 -3085
  744. numpy-1.9.3/tools/swig/test/Array.i +0 -102
  745. numpy-1.9.3/tools/swig/test/Makefile +0 -34
  746. numpy-1.9.3/tools/swig/test/setup.py +0 -64
  747. numpy-1.9.3/tools/swig/test/testArray.py +0 -284
  748. numpy-1.9.3/tools/swig/test/testFarray.py +0 -159
  749. numpy-1.9.3/tools/swig/test/testFortran.py +0 -173
  750. numpy-1.9.3/tools/swig/test/testMatrix.py +0 -362
  751. numpy-1.9.3/tools/swig/test/testSuperTensor.py +0 -388
  752. numpy-1.9.3/tools/swig/test/testTensor.py +0 -402
  753. numpy-1.9.3/tools/swig/test/testVector.py +0 -381
  754. {numpy-1.9.3 → numpy-1.10.0.post2}/BENTO_BUILD.txt +0 -0
  755. {numpy-1.9.3 → numpy-1.10.0.post2}/COMPATIBILITY +0 -0
  756. {numpy-1.9.3 → numpy-1.10.0.post2}/DEV_README.txt +0 -0
  757. {numpy-1.9.3 → numpy-1.10.0.post2}/README.txt +0 -0
  758. {numpy-1.9.3 → numpy-1.10.0.post2}/THANKS.txt +0 -0
  759. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/Makefile +0 -0
  760. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/BUGS.txt +0 -0
  761. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/FAQ.txt +0 -0
  762. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/HISTORY.txt +0 -0
  763. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/Makefile +0 -0
  764. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/OLDNEWS.txt +0 -0
  765. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/README.txt +0 -0
  766. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/Release-1.x.txt +0 -0
  767. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/Release-2.x.txt +0 -0
  768. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/Release-3.x.txt +0 -0
  769. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/Release-4.x.txt +0 -0
  770. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/TESTING.txt +0 -0
  771. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/THANKS.txt +0 -0
  772. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/TODO.txt +0 -0
  773. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/apps.tex +0 -0
  774. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/bugs.tex +0 -0
  775. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/collectinput.py +0 -0
  776. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/commands.tex +0 -0
  777. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/default.css +0 -0
  778. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/docutils.conf +0 -0
  779. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/arr.f +0 -0
  780. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/bar.f +0 -0
  781. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/foo.f +0 -0
  782. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/foobar-smart.f90 +0 -0
  783. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/foobar.f90 +0 -0
  784. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/foobarmodule.tex +0 -0
  785. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/runme +0 -0
  786. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2py.1 +0 -0
  787. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2py2e.tex +0 -0
  788. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/README.txt +0 -0
  789. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/aerostructure.jpg +0 -0
  790. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/flow.jpg +0 -0
  791. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/mk_html.sh +0 -0
  792. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/mk_pdf.sh +0 -0
  793. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/mk_ps.sh +0 -0
  794. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/exp1.f +0 -0
  795. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/exp1mess.txt +0 -0
  796. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/exp1session.txt +0 -0
  797. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/foo.pyf +0 -0
  798. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/foom.pyf +0 -0
  799. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/structure.jpg +0 -0
  800. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/fortranobject.tex +0 -0
  801. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/hello.f +0 -0
  802. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/index.html +0 -0
  803. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/intro.tex +0 -0
  804. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/array_from_pyobj.c +0 -0
  805. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/bar.c +0 -0
  806. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/foo.f +0 -0
  807. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/fortran_array_from_pyobj.txt +0 -0
  808. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/fun.pyf +0 -0
  809. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/run.pyf +0 -0
  810. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/transpose.txt +0 -0
  811. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarrays.txt +0 -0
  812. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/notes.tex +0 -0
  813. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/oldnews.html +0 -0
  814. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/options.tex +0 -0
  815. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/pyforttest.pyf +0 -0
  816. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/pytest.py +0 -0
  817. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/python9.tex +0 -0
  818. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/signaturefile.tex +0 -0
  819. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/simple.f +0 -0
  820. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/simple_session.dat +0 -0
  821. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/using_F_compiler.txt +0 -0
  822. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/win32_notes.txt +0 -0
  823. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/postprocess.py +0 -0
  824. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.3.0-notes.rst +0 -0
  825. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.4.0-notes.rst +0 -0
  826. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.5.0-notes.rst +0 -0
  827. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.6.0-notes.rst +0 -0
  828. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.6.1-notes.rst +0 -0
  829. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.6.2-notes.rst +0 -0
  830. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.7.0-notes.rst +0 -0
  831. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.7.1-notes.rst +0 -0
  832. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.7.2-notes.rst +0 -0
  833. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.8.0-notes.rst +0 -0
  834. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.8.1-notes.rst +0 -0
  835. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.8.2-notes.rst +0 -0
  836. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.9.0-notes.rst +0 -0
  837. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.9.1-notes.rst +0 -0
  838. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.9.2-notes.rst +0 -0
  839. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/time_based_proposal.rst +0 -0
  840. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/.git +0 -0
  841. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/.gitignore +0 -0
  842. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/Makefile +0 -0
  843. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/README.rst +0 -0
  844. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_static/scipyshiny_small.png +0 -0
  845. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/layout.html +0 -0
  846. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/searchbox.html +0 -0
  847. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/sourcelink.html +0 -0
  848. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/extend.css +0 -0
  849. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/pygments.css +0 -0
  850. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/scipy-central.css +0 -0
  851. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/spc-bootstrap.css +0 -0
  852. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/spc-extend.css +0 -0
  853. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/all-icons.svg +0 -0
  854. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/contents.png +0 -0
  855. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/create-new-account-icon.png +0 -0
  856. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-icon-shrunk.png +0 -0
  857. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-icon.png +0 -0
  858. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-icon.svg +0 -0
  859. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-list-icon-tiniest.png +0 -0
  860. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-list-icon-tiny.png +0 -0
  861. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-list-icon.png +0 -0
  862. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ad.png +0 -0
  863. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ae.png +0 -0
  864. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-af.png +0 -0
  865. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ag.png +0 -0
  866. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ai.png +0 -0
  867. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-al.png +0 -0
  868. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-am.png +0 -0
  869. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ao.png +0 -0
  870. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-aq.png +0 -0
  871. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ar.png +0 -0
  872. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-as.png +0 -0
  873. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-at.png +0 -0
  874. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-au.png +0 -0
  875. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-aw.png +0 -0
  876. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-az.png +0 -0
  877. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ba.png +0 -0
  878. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bb.png +0 -0
  879. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bd.png +0 -0
  880. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-be.png +0 -0
  881. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bf.png +0 -0
  882. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bg.png +0 -0
  883. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bh.png +0 -0
  884. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bi.png +0 -0
  885. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bj.png +0 -0
  886. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bl.png +0 -0
  887. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bm.png +0 -0
  888. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bn.png +0 -0
  889. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bo.png +0 -0
  890. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-br.png +0 -0
  891. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bs.png +0 -0
  892. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bt.png +0 -0
  893. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bw.png +0 -0
  894. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-by.png +0 -0
  895. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bz.png +0 -0
  896. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ca.png +0 -0
  897. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cc.png +0 -0
  898. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cd.png +0 -0
  899. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cf.png +0 -0
  900. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cg.png +0 -0
  901. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ch.png +0 -0
  902. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ci.png +0 -0
  903. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ck.png +0 -0
  904. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cl.png +0 -0
  905. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cm.png +0 -0
  906. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cn.png +0 -0
  907. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-co.png +0 -0
  908. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cr.png +0 -0
  909. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cu.png +0 -0
  910. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cv.png +0 -0
  911. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cw.png +0 -0
  912. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cx.png +0 -0
  913. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cy.png +0 -0
  914. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cz.png +0 -0
  915. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-de.png +0 -0
  916. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-dj.png +0 -0
  917. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-dk.png +0 -0
  918. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-dm.png +0 -0
  919. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-do.png +0 -0
  920. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-dz.png +0 -0
  921. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ec.png +0 -0
  922. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ee.png +0 -0
  923. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-eg.png +0 -0
  924. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-er.png +0 -0
  925. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-es.png +0 -0
  926. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-et.png +0 -0
  927. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fi.png +0 -0
  928. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fj.png +0 -0
  929. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fk.png +0 -0
  930. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fm.png +0 -0
  931. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fo.png +0 -0
  932. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fr.png +0 -0
  933. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ga.png +0 -0
  934. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gb.png +0 -0
  935. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gd.png +0 -0
  936. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ge.png +0 -0
  937. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gf.png +0 -0
  938. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gg.png +0 -0
  939. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gh.png +0 -0
  940. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gi.png +0 -0
  941. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gl.png +0 -0
  942. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gm.png +0 -0
  943. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gn.png +0 -0
  944. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gq.png +0 -0
  945. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gr.png +0 -0
  946. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gs.png +0 -0
  947. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gt.png +0 -0
  948. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gu.png +0 -0
  949. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gw.png +0 -0
  950. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gy.png +0 -0
  951. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hk.png +0 -0
  952. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hm.png +0 -0
  953. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hn.png +0 -0
  954. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hr.png +0 -0
  955. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ht.png +0 -0
  956. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hu.png +0 -0
  957. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-id.png +0 -0
  958. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ie.png +0 -0
  959. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-il.png +0 -0
  960. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-im.png +0 -0
  961. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-in.png +0 -0
  962. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-io.png +0 -0
  963. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-iq.png +0 -0
  964. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ir.png +0 -0
  965. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-is.png +0 -0
  966. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-it.png +0 -0
  967. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-je.png +0 -0
  968. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-jm.png +0 -0
  969. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-jo.png +0 -0
  970. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-jp.png +0 -0
  971. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ke.png +0 -0
  972. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kg.png +0 -0
  973. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kh.png +0 -0
  974. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ki.png +0 -0
  975. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-km.png +0 -0
  976. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kn.png +0 -0
  977. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kp.png +0 -0
  978. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kr.png +0 -0
  979. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kw.png +0 -0
  980. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ky.png +0 -0
  981. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kz.png +0 -0
  982. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-la.png +0 -0
  983. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lb.png +0 -0
  984. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lc.png +0 -0
  985. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-li.png +0 -0
  986. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lk.png +0 -0
  987. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lr.png +0 -0
  988. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ls.png +0 -0
  989. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lt.png +0 -0
  990. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lu.png +0 -0
  991. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lv.png +0 -0
  992. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ly.png +0 -0
  993. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ma.png +0 -0
  994. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mc.png +0 -0
  995. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-md.png +0 -0
  996. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-me.png +0 -0
  997. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mf.png +0 -0
  998. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mg.png +0 -0
  999. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mh.png +0 -0
  1000. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mk.png +0 -0
  1001. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ml.png +0 -0
  1002. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mm.png +0 -0
  1003. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mn.png +0 -0
  1004. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mo.png +0 -0
  1005. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mp.png +0 -0
  1006. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mq.png +0 -0
  1007. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mr.png +0 -0
  1008. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ms.png +0 -0
  1009. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mt.png +0 -0
  1010. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mu.png +0 -0
  1011. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mv.png +0 -0
  1012. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mw.png +0 -0
  1013. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mx.png +0 -0
  1014. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-my.png +0 -0
  1015. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mz.png +0 -0
  1016. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-na.png +0 -0
  1017. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nc.png +0 -0
  1018. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ne.png +0 -0
  1019. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nf.png +0 -0
  1020. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ng.png +0 -0
  1021. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ni.png +0 -0
  1022. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nl.png +0 -0
  1023. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-no.png +0 -0
  1024. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-np.png +0 -0
  1025. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nr.png +0 -0
  1026. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nu.png +0 -0
  1027. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nz.png +0 -0
  1028. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-om.png +0 -0
  1029. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pa.png +0 -0
  1030. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pe.png +0 -0
  1031. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pf.png +0 -0
  1032. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pg.png +0 -0
  1033. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ph.png +0 -0
  1034. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pk.png +0 -0
  1035. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pl.png +0 -0
  1036. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pm.png +0 -0
  1037. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pn.png +0 -0
  1038. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pr.png +0 -0
  1039. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ps.png +0 -0
  1040. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pt.png +0 -0
  1041. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pw.png +0 -0
  1042. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-py.png +0 -0
  1043. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-qa.png +0 -0
  1044. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-re.png +0 -0
  1045. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ro.png +0 -0
  1046. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-rs.png +0 -0
  1047. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ru.png +0 -0
  1048. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-rw.png +0 -0
  1049. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sa.png +0 -0
  1050. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sb.png +0 -0
  1051. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sc.png +0 -0
  1052. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sd.png +0 -0
  1053. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-se.png +0 -0
  1054. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sg.png +0 -0
  1055. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sh.png +0 -0
  1056. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-si.png +0 -0
  1057. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sj.png +0 -0
  1058. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sk.png +0 -0
  1059. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sl.png +0 -0
  1060. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sm.png +0 -0
  1061. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sn.png +0 -0
  1062. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-so.png +0 -0
  1063. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sr.png +0 -0
  1064. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-st.png +0 -0
  1065. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sv.png +0 -0
  1066. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sy.png +0 -0
  1067. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sz.png +0 -0
  1068. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tc.png +0 -0
  1069. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-td.png +0 -0
  1070. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tf.png +0 -0
  1071. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tg.png +0 -0
  1072. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-th.png +0 -0
  1073. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tj.png +0 -0
  1074. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tk.png +0 -0
  1075. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tl.png +0 -0
  1076. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tm.png +0 -0
  1077. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tn.png +0 -0
  1078. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-to.png +0 -0
  1079. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tr.png +0 -0
  1080. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tt.png +0 -0
  1081. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tv.png +0 -0
  1082. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tw.png +0 -0
  1083. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tz.png +0 -0
  1084. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ua.png +0 -0
  1085. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ug.png +0 -0
  1086. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-um.png +0 -0
  1087. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-us.png +0 -0
  1088. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-uy.png +0 -0
  1089. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-uz.png +0 -0
  1090. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-va.png +0 -0
  1091. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vc.png +0 -0
  1092. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ve.png +0 -0
  1093. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vg.png +0 -0
  1094. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vi.png +0 -0
  1095. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vn.png +0 -0
  1096. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vu.png +0 -0
  1097. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-wf.png +0 -0
  1098. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ws.png +0 -0
  1099. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ye.png +0 -0
  1100. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-za.png +0 -0
  1101. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-zm.png +0 -0
  1102. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-zw.png +0 -0
  1103. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/glyphicons-halflings-white.png +0 -0
  1104. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/glyphicons-halflings.png +0 -0
  1105. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/important-icon.png +0 -0
  1106. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/information-icon.png +0 -0
  1107. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/internet-web-browser.png +0 -0
  1108. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-icon-shrunk.png +0 -0
  1109. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-icon.png +0 -0
  1110. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-icon.svg +0 -0
  1111. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-list-icon-tiny.png +0 -0
  1112. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-list-icon.png +0 -0
  1113. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/navigation.png +0 -0
  1114. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/person-list-icon-tiny.png +0 -0
  1115. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/person-list-icon.png +0 -0
  1116. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/scipy-logo.png +0 -0
  1117. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/scipy_org_logo.gif +0 -0
  1118. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/scipycentral_logo.png +0 -0
  1119. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/scipyshiny_small.png +0 -0
  1120. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/send-email-icon.png +0 -0
  1121. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-icon-shrunk.png +0 -0
  1122. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-icon.png +0 -0
  1123. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-icon.svg +0 -0
  1124. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-list-icon-tiniest.png +0 -0
  1125. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-list-icon-tiny.png +0 -0
  1126. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-list-icon.png +0 -0
  1127. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/transparent-pixel.gif +0 -0
  1128. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/ui-anim_basic_16x16.gif +0 -0
  1129. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/js/copybutton.js +0 -0
  1130. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/accordion.less +0 -0
  1131. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/alerts.less +0 -0
  1132. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/bootstrap.less +0 -0
  1133. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/breadcrumbs.less +0 -0
  1134. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/button-groups.less +0 -0
  1135. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/buttons.less +0 -0
  1136. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/carousel.less +0 -0
  1137. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/close.less +0 -0
  1138. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/code.less +0 -0
  1139. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/component-animations.less +0 -0
  1140. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/dropdowns.less +0 -0
  1141. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/forms.less +0 -0
  1142. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/grid.less +0 -0
  1143. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/hero-unit.less +0 -0
  1144. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/labels-badges.less +0 -0
  1145. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/layouts.less +0 -0
  1146. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/media.less +0 -0
  1147. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/mixins.less +0 -0
  1148. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/modals.less +0 -0
  1149. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/navbar.less +0 -0
  1150. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/navs.less +0 -0
  1151. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/pager.less +0 -0
  1152. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/pagination.less +0 -0
  1153. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/popovers.less +0 -0
  1154. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/progress-bars.less +0 -0
  1155. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/reset.less +0 -0
  1156. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-1200px-min.less +0 -0
  1157. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-767px-max.less +0 -0
  1158. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-768px-979px.less +0 -0
  1159. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-navbar.less +0 -0
  1160. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-utilities.less +0 -0
  1161. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive.less +0 -0
  1162. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/scaffolding.less +0 -0
  1163. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/sprites.less +0 -0
  1164. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/tables.less +0 -0
  1165. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/thumbnails.less +0 -0
  1166. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/tooltip.less +0 -0
  1167. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/type.less +0 -0
  1168. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/utilities.less +0 -0
  1169. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/variables.less +0 -0
  1170. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/wells.less +0 -0
  1171. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-bootstrap.less +0 -0
  1172. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-content.less +0 -0
  1173. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-extend.less +0 -0
  1174. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-footer.less +0 -0
  1175. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-header.less +0 -0
  1176. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-rightsidebar.less +0 -0
  1177. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-utils.less +0 -0
  1178. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/scipy.css_t +0 -0
  1179. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/theme.conf +0 -0
  1180. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/conf.py +0 -0
  1181. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/index.rst +0 -0
  1182. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_autodoc.rst +0 -0
  1183. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_autodoc_2.rst +0 -0
  1184. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_autodoc_3.rst +0 -0
  1185. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_autodoc_4.rst +0 -0
  1186. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_optimize.rst +0 -0
  1187. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/_templates/autosummary/class.rst +0 -0
  1188. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/_templates/indexcontent.html +0 -0
  1189. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/_templates/indexsidebar.html +0 -0
  1190. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/_templates/layout.html +0 -0
  1191. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/about.rst +0 -0
  1192. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/bugs.rst +0 -0
  1193. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/contents.rst +0 -0
  1194. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/configure_git.rst +0 -0
  1195. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/development_setup.rst +0 -0
  1196. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/dot2_dot3.rst +0 -0
  1197. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/following_latest.rst +0 -0
  1198. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/forking_button.png +0 -0
  1199. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/git_development.rst +0 -0
  1200. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/git_intro.rst +0 -0
  1201. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/git_resources.rst +0 -0
  1202. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/pull_button.png +0 -0
  1203. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash_links.txt +0 -0
  1204. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/advanced.rst +0 -0
  1205. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/allocarr.f90 +0 -0
  1206. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/allocarr_session.dat +0 -0
  1207. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/array.f +0 -0
  1208. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/array_session.dat +0 -0
  1209. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/calculate.f +0 -0
  1210. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/calculate_session.dat +0 -0
  1211. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/callback.f +0 -0
  1212. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/callback2.pyf +0 -0
  1213. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/callback_session.dat +0 -0
  1214. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/common.f +0 -0
  1215. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/common_session.dat +0 -0
  1216. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/compile_session.dat +0 -0
  1217. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/distutils.rst +0 -0
  1218. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/extcallback.f +0 -0
  1219. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/extcallback_session.dat +0 -0
  1220. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/fib1.f +0 -0
  1221. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/fib1.pyf +0 -0
  1222. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/fib2.pyf +0 -0
  1223. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/fib3.f +0 -0
  1224. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/ftype.f +0 -0
  1225. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/ftype_session.dat +0 -0
  1226. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/getting-started.rst +0 -0
  1227. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/index.rst +0 -0
  1228. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/moddata.f90 +0 -0
  1229. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/moddata_session.dat +0 -0
  1230. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/python-usage.rst +0 -0
  1231. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/run_main_session.dat +0 -0
  1232. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/scalar.f +0 -0
  1233. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/scalar_session.dat +0 -0
  1234. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/setup_example.py +0 -0
  1235. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/signature-file.rst +0 -0
  1236. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/spam.pyf +0 -0
  1237. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/spam_session.dat +0 -0
  1238. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/string.f +0 -0
  1239. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/string_session.dat +0 -0
  1240. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/usage.rst +0 -0
  1241. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/var.pyf +0 -0
  1242. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/var_session.dat +0 -0
  1243. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/glossary.rst +0 -0
  1244. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/license.rst +0 -0
  1245. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/datetime-proposal.rst +0 -0
  1246. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/datetime-proposal3.rst +0 -0
  1247. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/deferred-ufunc-evaluation.rst +0 -0
  1248. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/generalized-ufuncs.rst +0 -0
  1249. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/groupby_additions.rst +0 -0
  1250. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/index.rst +0 -0
  1251. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/math_config_clean.rst +0 -0
  1252. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/missing-data.rst +0 -0
  1253. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/new-iterator-ufunc.rst +0 -0
  1254. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/newbugtracker.rst +0 -0
  1255. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/npy-format.rst +0 -0
  1256. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/structured_array_extensions.rst +0 -0
  1257. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/ufunc-overrides.rst +0 -0
  1258. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/warnfix.rst +0 -0
  1259. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/arrays.datetime.rst +0 -0
  1260. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/arrays.nditer.rst +0 -0
  1261. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/arrays.rst +0 -0
  1262. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/c-api.deprecations.rst +0 -0
  1263. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/c-api.rst +0 -0
  1264. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/distutils.rst +0 -0
  1265. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/figures/dtype-hierarchy.dia +0 -0
  1266. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/figures/dtype-hierarchy.pdf +0 -0
  1267. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/figures/dtype-hierarchy.png +0 -0
  1268. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/figures/threefundamental.fig +0 -0
  1269. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/figures/threefundamental.pdf +0 -0
  1270. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/figures/threefundamental.png +0 -0
  1271. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/internals.rst +0 -0
  1272. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/maskedarray.baseclass.rst +0 -0
  1273. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/maskedarray.generic.rst +0 -0
  1274. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/maskedarray.rst +0 -0
  1275. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.array-creation.rst +0 -0
  1276. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.bitwise.rst +0 -0
  1277. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.char.rst +0 -0
  1278. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.ctypeslib.rst +0 -0
  1279. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.datetime.rst +0 -0
  1280. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.dtype.rst +0 -0
  1281. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.dual.rst +0 -0
  1282. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.emath.rst +0 -0
  1283. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.err.rst +0 -0
  1284. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.fft.rst +0 -0
  1285. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.financial.rst +0 -0
  1286. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.functional.rst +0 -0
  1287. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.help.rst +0 -0
  1288. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.indexing.rst +0 -0
  1289. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.logic.rst +0 -0
  1290. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.math.rst +0 -0
  1291. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.matlib.rst +0 -0
  1292. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.numarray.rst +0 -0
  1293. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.oldnumeric.rst +0 -0
  1294. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.other.rst +0 -0
  1295. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.padding.rst +0 -0
  1296. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.chebyshev.rst +0 -0
  1297. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.classes.rst +0 -0
  1298. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.hermite.rst +0 -0
  1299. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.hermite_e.rst +0 -0
  1300. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.laguerre.rst +0 -0
  1301. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.legendre.rst +0 -0
  1302. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.package.rst +0 -0
  1303. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.poly1d.rst +0 -0
  1304. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.polynomial.rst +0 -0
  1305. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.rst +0 -0
  1306. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.random.rst +0 -0
  1307. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.rst +0 -0
  1308. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.set.rst +0 -0
  1309. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.testing.rst +0 -0
  1310. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.window.rst +0 -0
  1311. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/swig.rst +0 -0
  1312. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.broadcasting.rst +0 -0
  1313. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.byteswapping.rst +0 -0
  1314. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.creation.rst +0 -0
  1315. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.indexing.rst +0 -0
  1316. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.io.rst +0 -0
  1317. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.rst +0 -0
  1318. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.subclassing.rst +0 -0
  1319. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.types.rst +0 -0
  1320. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/c-info.rst +0 -0
  1321. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/howtofind.rst +0 -0
  1322. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/index.rst +0 -0
  1323. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/introduction.rst +0 -0
  1324. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/misc.rst +0 -0
  1325. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/performance.rst +0 -0
  1326. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/whatisnumpy.rst +0 -0
  1327. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/.git +0 -0
  1328. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/.gitignore +0 -0
  1329. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/.travis.yml +0 -0
  1330. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/LICENSE.txt +0 -0
  1331. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/MANIFEST.in +0 -0
  1332. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/README.rst +0 -0
  1333. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/__init__.py +0 -0
  1334. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/comment_eater.py +0 -0
  1335. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/compiler_unparse.py +0 -0
  1336. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/docscrape.py +0 -0
  1337. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/docscrape_sphinx.py +0 -0
  1338. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/linkcode.py +0 -0
  1339. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/numpydoc.py +0 -0
  1340. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/phantom_import.py +0 -0
  1341. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/plot_directive.py +0 -0
  1342. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_docscrape.py +0 -0
  1343. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_linkcode.py +0 -0
  1344. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_phantom_import.py +0 -0
  1345. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_plot_directive.py +0 -0
  1346. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_traitsdoc.py +0 -0
  1347. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/traitsdoc.py +0 -0
  1348. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/setup.py +0 -0
  1349. {numpy-1.9.3/numpy/core/code_generators → numpy-1.10.0.post2/numpy/_build_utils}/__init__.py +0 -0
  1350. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/compat/__init__.py +0 -0
  1351. {numpy-1.9.3/numpy/distutils/tests/f2py_ext → numpy-1.10.0.post2/numpy/core/code_generators}/__init__.py +0 -0
  1352. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/code_generators/genapi.py +0 -0
  1353. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/code_generators/generate_numpy_api.py +0 -0
  1354. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/cversions.py +0 -0
  1355. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/_neighborhood_iterator_imp.h +0 -0
  1356. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/_numpyconfig.h.in +0 -0
  1357. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/arrayobject.h +0 -0
  1358. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/arrayscalars.h +0 -0
  1359. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/halffloat.h +0 -0
  1360. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/noprefix.h +0 -0
  1361. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/npy_1_7_deprecated_api.h +0 -0
  1362. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/npy_interrupt.h +0 -0
  1363. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/npy_no_deprecated_api.h +0 -0
  1364. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/npy_os.h +0 -0
  1365. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/old_defines.h +0 -0
  1366. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/oldnumeric.h +0 -0
  1367. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/ufuncobject.h +0 -0
  1368. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/utils.h +0 -0
  1369. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/info.py +0 -0
  1370. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/mlib.ini.in +0 -0
  1371. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/npymath.ini.in +0 -0
  1372. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/dummymodule.c +0 -0
  1373. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/_datetime.h +0 -0
  1374. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/alloc.h +0 -0
  1375. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/array_assign.c +0 -0
  1376. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/array_assign.h +0 -0
  1377. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/array_assign_array.c +0 -0
  1378. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/array_assign_scalar.c +0 -0
  1379. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/arrayobject.h +0 -0
  1380. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/buffer.h +0 -0
  1381. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/calculation.h +0 -0
  1382. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/conversion_utils.h +0 -0
  1383. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/convert.h +0 -0
  1384. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/convert_datatype.h +0 -0
  1385. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/ctors.h +0 -0
  1386. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/datetime_busday.h +0 -0
  1387. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/datetime_busdaycal.h +0 -0
  1388. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/datetime_strings.h +0 -0
  1389. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/descriptor.h +0 -0
  1390. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/flagsobject.c +0 -0
  1391. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/getset.h +0 -0
  1392. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/hashdescr.h +0 -0
  1393. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/item_selection.h +0 -0
  1394. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/iterators.h +0 -0
  1395. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/methods.h +0 -0
  1396. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/nditer_impl.h +0 -0
  1397. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/nditer_pywrap.h +0 -0
  1398. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/nditer_templ.c.src +0 -0
  1399. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/numpymemoryview.h +0 -0
  1400. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/numpyos.h +0 -0
  1401. {numpy-1.9.3/numpy/core/blasdot → numpy-1.10.0.post2/numpy/core/src/multiarray}/python_xerbla.c +0 -0
  1402. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/refcount.c +0 -0
  1403. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/refcount.h +0 -0
  1404. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/sequence.c +0 -0
  1405. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/sequence.h +0 -0
  1406. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/shape.h +0 -0
  1407. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/ucsnarrow.h +0 -0
  1408. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/usertypes.c +0 -0
  1409. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/usertypes.h +0 -0
  1410. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/npymath/_signbit.c +0 -0
  1411. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/npymath/halffloat.c +0 -0
  1412. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/npymath/npy_math_common.h +0 -0
  1413. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/npysort/binsearch.c.src +0 -0
  1414. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/private/lowlevel_strided_loops.h +0 -0
  1415. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/private/npy_binsearch.h.src +0 -0
  1416. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/private/npy_fpmath.h +0 -0
  1417. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/private/npy_pycompat.h +0 -0
  1418. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/umath/reduction.c +0 -0
  1419. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/umath/reduction.h +0 -0
  1420. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/umath/struct_ufunc_test.c.src +0 -0
  1421. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/umath/ufunc_object.h +0 -0
  1422. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/umath/ufunc_type_resolution.h +0 -0
  1423. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/tests/data/astype_copy.pkl +0 -0
  1424. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/tests/data/recarray_from_file.fits +0 -0
  1425. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/tests/test_scalarprint.py +0 -0
  1426. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/ctypeslib.py +0 -0
  1427. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/__version__.py +0 -0
  1428. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/__init__.py +0 -0
  1429. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/bdist_rpm.py +0 -0
  1430. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/build_py.py +0 -0
  1431. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/build_scripts.py +0 -0
  1432. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/build_src.py +0 -0
  1433. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/config_compiler.py +0 -0
  1434. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/develop.py +0 -0
  1435. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/egg_info.py +0 -0
  1436. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/install.py +0 -0
  1437. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/install_clib.py +0 -0
  1438. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/install_data.py +0 -0
  1439. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/install_headers.py +0 -0
  1440. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/sdist.py +0 -0
  1441. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/compat.py +0 -0
  1442. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/conv_template.py +0 -0
  1443. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/core.py +0 -0
  1444. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/cpuinfo.py +0 -0
  1445. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/environment.py +0 -0
  1446. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/extension.py +0 -0
  1447. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/__init__.py +0 -0
  1448. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/absoft.py +0 -0
  1449. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/g95.py +0 -0
  1450. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/hpux.py +0 -0
  1451. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/ibm.py +0 -0
  1452. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/lahey.py +0 -0
  1453. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/mips.py +0 -0
  1454. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/nag.py +0 -0
  1455. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/none.py +0 -0
  1456. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/pathf95.py +0 -0
  1457. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/vast.py +0 -0
  1458. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/from_template.py +0 -0
  1459. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/info.py +0 -0
  1460. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/line_endings.py +0 -0
  1461. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/log.py +0 -0
  1462. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/mingw/gfortran_vs2003_hack.c +0 -0
  1463. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/numpy_distribution.py +0 -0
  1464. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/pathccompiler.py +0 -0
  1465. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/setup.py +0 -0
  1466. {numpy-1.9.3/numpy/distutils/tests/f2py_f90_ext → numpy-1.10.0.post2/numpy/distutils/tests/f2py_ext}/__init__.py +0 -0
  1467. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_ext/setup.py +0 -0
  1468. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_ext/src/fib1.f +0 -0
  1469. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_ext/src/fib2.pyf +0 -0
  1470. {numpy-1.9.3/numpy/distutils/tests/gen_ext → numpy-1.10.0.post2/numpy/distutils/tests/f2py_f90_ext}/__init__.py +0 -0
  1471. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_f90_ext/include/body.f90 +0 -0
  1472. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_f90_ext/setup.py +0 -0
  1473. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_f90_ext/src/foo_free.f90 +0 -0
  1474. {numpy-1.9.3/numpy/distutils/tests/pyrex_ext → numpy-1.10.0.post2/numpy/distutils/tests/gen_ext}/__init__.py +0 -0
  1475. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/gen_ext/setup.py +0 -0
  1476. {numpy-1.9.3/numpy/distutils/tests/swig_ext → numpy-1.10.0.post2/numpy/distutils/tests/pyrex_ext}/__init__.py +0 -0
  1477. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/pyrex_ext/primes.pyx +0 -0
  1478. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/pyrex_ext/setup.py +0 -0
  1479. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/setup.py +0 -0
  1480. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/setup.py +0 -0
  1481. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/example.c +0 -0
  1482. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/example.i +0 -0
  1483. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/zoo.cc +0 -0
  1484. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/zoo.h +0 -0
  1485. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/zoo.i +0 -0
  1486. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/test_exec_command.py +0 -0
  1487. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/__init__.py +0 -0
  1488. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/basics.py +0 -0
  1489. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/broadcasting.py +0 -0
  1490. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/constants.py +0 -0
  1491. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/howtofind.py +0 -0
  1492. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/internals.py +0 -0
  1493. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/io.py +0 -0
  1494. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/jargon.py +0 -0
  1495. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/methods_vs_functions.py +0 -0
  1496. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/misc.py +0 -0
  1497. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/performance.py +0 -0
  1498. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/subclassing.py +0 -0
  1499. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/ufuncs.py +0 -0
  1500. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/dual.py +0 -0
  1501. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/__version__.py +0 -0
  1502. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/info.py +0 -0
  1503. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/.f2py_f2cmap +0 -0
  1504. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/foo_free.f90 +0 -0
  1505. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/foo_mod.f90 +0 -0
  1506. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/foo_use.f90 +0 -0
  1507. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/precision.f90 +0 -0
  1508. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/kind/foo.f90 +0 -0
  1509. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/mixed/foo.f +0 -0
  1510. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/mixed/foo_fixed.f90 +0 -0
  1511. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/mixed/foo_free.f90 +0 -0
  1512. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/regression/inout.f90 +0 -0
  1513. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/size/foo.f90 +0 -0
  1514. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/fft/__init__.py +0 -0
  1515. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/fft/helper.py +0 -0
  1516. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/__init__.py +0 -0
  1517. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/_datasource.py +0 -0
  1518. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/_version.py +0 -0
  1519. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/scimath.py +0 -0
  1520. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/data/python3.npy +0 -0
  1521. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/data/win64python2.npy +0 -0
  1522. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/test__datasource.py +0 -0
  1523. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/test_arrayterator.py +0 -0
  1524. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/test_regression.py +0 -0
  1525. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/test_ufunclike.py +0 -0
  1526. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/test_utils.py +0 -0
  1527. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/ufunclike.py +0 -0
  1528. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/user_array.py +0 -0
  1529. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/__init__.py +0 -0
  1530. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/info.py +0 -0
  1531. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/blas_lite.c +0 -0
  1532. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/dlamch.c +0 -0
  1533. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/dlapack_lite.c +0 -0
  1534. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/f2c.h +0 -0
  1535. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/f2c_lite.c +0 -0
  1536. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/zlapack_lite.c +0 -0
  1537. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/setup.py +0 -0
  1538. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/tests/test_deprecations.py +0 -0
  1539. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/ma/version.py +0 -0
  1540. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/matrixlib/__init__.py +0 -0
  1541. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/matrixlib/setup.py +0 -0
  1542. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/__init__.py +0 -0
  1543. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/polynomial.py +0 -0
  1544. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/setup.py +0 -0
  1545. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_chebyshev.py +0 -0
  1546. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_classes.py +0 -0
  1547. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_hermite.py +0 -0
  1548. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_hermite_e.py +0 -0
  1549. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_laguerre.py +0 -0
  1550. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_legendre.py +0 -0
  1551. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_polynomial.py +0 -0
  1552. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_polyutils.py +0 -0
  1553. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_printing.py +0 -0
  1554. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/__init__.py +0 -0
  1555. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/info.py +0 -0
  1556. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/Python.pxi +0 -0
  1557. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/distributions.h +0 -0
  1558. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/generate_mtrand_c.py +0 -0
  1559. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/initarray.c +0 -0
  1560. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/initarray.h +0 -0
  1561. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/mtrand_py_helper.h +0 -0
  1562. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/numpy.pxd +0 -0
  1563. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/randomkit.c +0 -0
  1564. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/randomkit.h +0 -0
  1565. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/testing/tests/test_doctesting.py +0 -0
  1566. {numpy-1.9.3 → numpy-1.10.0.post2}/setupegg.py +0 -0
  1567. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/Makefile +0 -0
  1568. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/pyfragments.swg +0 -0
  1569. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Array1.cxx +0 -0
  1570. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Array1.h +0 -0
  1571. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Array2.cxx +0 -0
  1572. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Array2.h +0 -0
  1573. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Farray.cxx +0 -0
  1574. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Farray.h +0 -0
  1575. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Farray.i +0 -0
  1576. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Fortran.cxx +0 -0
  1577. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Fortran.h +0 -0
  1578. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Fortran.i +0 -0
  1579. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Matrix.cxx +0 -0
  1580. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Matrix.h +0 -0
  1581. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Matrix.i +0 -0
  1582. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/SuperTensor.cxx +0 -0
  1583. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/SuperTensor.h +0 -0
  1584. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/SuperTensor.i +0 -0
  1585. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Tensor.cxx +0 -0
  1586. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Tensor.h +0 -0
  1587. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Tensor.i +0 -0
  1588. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Vector.cxx +0 -0
  1589. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Vector.h +0 -0
  1590. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Vector.i +0 -0
@@ -1,2145 +0,0 @@
1
- from __future__ import division, absolute_import, print_function
2
-
3
- import warnings
4
- import sys
5
-
6
- import numpy as np
7
- from numpy.testing import (
8
- run_module_suite, TestCase, assert_, assert_equal, assert_array_equal,
9
- assert_almost_equal, assert_array_almost_equal, assert_raises,
10
- assert_allclose, assert_array_max_ulp, assert_warns,
11
- assert_raises_regex, dec
12
- )
13
- from numpy.random import rand
14
- from numpy.lib import *
15
- from numpy.compat import long
16
-
17
-
18
- class TestAny(TestCase):
19
- def test_basic(self):
20
- y1 = [0, 0, 1, 0]
21
- y2 = [0, 0, 0, 0]
22
- y3 = [1, 0, 1, 0]
23
- assert_(np.any(y1))
24
- assert_(np.any(y3))
25
- assert_(not np.any(y2))
26
-
27
- def test_nd(self):
28
- y1 = [[0, 0, 0], [0, 1, 0], [1, 1, 0]]
29
- assert_(np.any(y1))
30
- assert_array_equal(np.sometrue(y1, axis=0), [1, 1, 0])
31
- assert_array_equal(np.sometrue(y1, axis=1), [0, 1, 1])
32
-
33
-
34
- class TestAll(TestCase):
35
- def test_basic(self):
36
- y1 = [0, 1, 1, 0]
37
- y2 = [0, 0, 0, 0]
38
- y3 = [1, 1, 1, 1]
39
- assert_(not np.all(y1))
40
- assert_(np.all(y3))
41
- assert_(not np.all(y2))
42
- assert_(np.all(~np.array(y2)))
43
-
44
- def test_nd(self):
45
- y1 = [[0, 0, 1], [0, 1, 1], [1, 1, 1]]
46
- assert_(not np.all(y1))
47
- assert_array_equal(np.alltrue(y1, axis=0), [0, 0, 1])
48
- assert_array_equal(np.alltrue(y1, axis=1), [0, 0, 1])
49
-
50
-
51
- class TestCopy(TestCase):
52
- def test_basic(self):
53
- a = np.array([[1, 2], [3, 4]])
54
- a_copy = np.copy(a)
55
- assert_array_equal(a, a_copy)
56
- a_copy[0, 0] = 10
57
- assert_equal(a[0, 0], 1)
58
- assert_equal(a_copy[0, 0], 10)
59
-
60
- def test_order(self):
61
- # It turns out that people rely on np.copy() preserving order by
62
- # default; changing this broke scikit-learn:
63
- # https://github.com/scikit-learn/scikit-learn/commit/7842748cf777412c506a8c0ed28090711d3a3783
64
- a = np.array([[1, 2], [3, 4]])
65
- assert_(a.flags.c_contiguous)
66
- assert_(not a.flags.f_contiguous)
67
- a_fort = np.array([[1, 2], [3, 4]], order="F")
68
- assert_(not a_fort.flags.c_contiguous)
69
- assert_(a_fort.flags.f_contiguous)
70
- a_copy = np.copy(a)
71
- assert_(a_copy.flags.c_contiguous)
72
- assert_(not a_copy.flags.f_contiguous)
73
- a_fort_copy = np.copy(a_fort)
74
- assert_(not a_fort_copy.flags.c_contiguous)
75
- assert_(a_fort_copy.flags.f_contiguous)
76
-
77
-
78
- class TestAverage(TestCase):
79
- def test_basic(self):
80
- y1 = np.array([1, 2, 3])
81
- assert_(average(y1, axis=0) == 2.)
82
- y2 = np.array([1., 2., 3.])
83
- assert_(average(y2, axis=0) == 2.)
84
- y3 = [0., 0., 0.]
85
- assert_(average(y3, axis=0) == 0.)
86
-
87
- y4 = np.ones((4, 4))
88
- y4[0, 1] = 0
89
- y4[1, 0] = 2
90
- assert_almost_equal(y4.mean(0), average(y4, 0))
91
- assert_almost_equal(y4.mean(1), average(y4, 1))
92
-
93
- y5 = rand(5, 5)
94
- assert_almost_equal(y5.mean(0), average(y5, 0))
95
- assert_almost_equal(y5.mean(1), average(y5, 1))
96
-
97
- y6 = np.matrix(rand(5, 5))
98
- assert_array_equal(y6.mean(0), average(y6, 0))
99
-
100
- def test_weights(self):
101
- y = np.arange(10)
102
- w = np.arange(10)
103
- actual = average(y, weights=w)
104
- desired = (np.arange(10) ** 2).sum()*1. / np.arange(10).sum()
105
- assert_almost_equal(actual, desired)
106
-
107
- y1 = np.array([[1, 2, 3], [4, 5, 6]])
108
- w0 = [1, 2]
109
- actual = average(y1, weights=w0, axis=0)
110
- desired = np.array([3., 4., 5.])
111
- assert_almost_equal(actual, desired)
112
-
113
- w1 = [0, 0, 1]
114
- actual = average(y1, weights=w1, axis=1)
115
- desired = np.array([3., 6.])
116
- assert_almost_equal(actual, desired)
117
-
118
- # This should raise an error. Can we test for that ?
119
- # assert_equal(average(y1, weights=w1), 9./2.)
120
-
121
- # 2D Case
122
- w2 = [[0, 0, 1], [0, 0, 2]]
123
- desired = np.array([3., 6.])
124
- assert_array_equal(average(y1, weights=w2, axis=1), desired)
125
- assert_equal(average(y1, weights=w2), 5.)
126
-
127
- def test_returned(self):
128
- y = np.array([[1, 2, 3], [4, 5, 6]])
129
-
130
- # No weights
131
- avg, scl = average(y, returned=True)
132
- assert_equal(scl, 6.)
133
-
134
- avg, scl = average(y, 0, returned=True)
135
- assert_array_equal(scl, np.array([2., 2., 2.]))
136
-
137
- avg, scl = average(y, 1, returned=True)
138
- assert_array_equal(scl, np.array([3., 3.]))
139
-
140
- # With weights
141
- w0 = [1, 2]
142
- avg, scl = average(y, weights=w0, axis=0, returned=True)
143
- assert_array_equal(scl, np.array([3., 3., 3.]))
144
-
145
- w1 = [1, 2, 3]
146
- avg, scl = average(y, weights=w1, axis=1, returned=True)
147
- assert_array_equal(scl, np.array([6., 6.]))
148
-
149
- w2 = [[0, 0, 1], [1, 2, 3]]
150
- avg, scl = average(y, weights=w2, axis=1, returned=True)
151
- assert_array_equal(scl, np.array([1., 6.]))
152
-
153
-
154
- class TestSelect(TestCase):
155
- choices = [np.array([1, 2, 3]),
156
- np.array([4, 5, 6]),
157
- np.array([7, 8, 9])]
158
- conditions = [np.array([False, False, False]),
159
- np.array([False, True, False]),
160
- np.array([False, False, True])]
161
-
162
- def _select(self, cond, values, default=0):
163
- output = []
164
- for m in range(len(cond)):
165
- output += [V[m] for V, C in zip(values, cond) if C[m]] or [default]
166
- return output
167
-
168
- def test_basic(self):
169
- choices = self.choices
170
- conditions = self.conditions
171
- assert_array_equal(select(conditions, choices, default=15),
172
- self._select(conditions, choices, default=15))
173
-
174
- assert_equal(len(choices), 3)
175
- assert_equal(len(conditions), 3)
176
-
177
- def test_broadcasting(self):
178
- conditions = [np.array(True), np.array([False, True, False])]
179
- choices = [1, np.arange(12).reshape(4, 3)]
180
- assert_array_equal(select(conditions, choices), np.ones((4, 3)))
181
- # default can broadcast too:
182
- assert_equal(select([True], [0], default=[0]).shape, (1,))
183
-
184
- def test_return_dtype(self):
185
- assert_equal(select(self.conditions, self.choices, 1j).dtype,
186
- np.complex_)
187
- # But the conditions need to be stronger then the scalar default
188
- # if it is scalar.
189
- choices = [choice.astype(np.int8) for choice in self.choices]
190
- assert_equal(select(self.conditions, choices).dtype, np.int8)
191
-
192
- d = np.array([1, 2, 3, np.nan, 5, 7])
193
- m = np.isnan(d)
194
- assert_equal(select([m], [d]), [0, 0, 0, np.nan, 0, 0])
195
-
196
- def test_deprecated_empty(self):
197
- with warnings.catch_warnings(record=True):
198
- warnings.simplefilter("always")
199
- assert_equal(select([], [], 3j), 3j)
200
-
201
- with warnings.catch_warnings():
202
- warnings.simplefilter("always")
203
- assert_warns(DeprecationWarning, select, [], [])
204
- warnings.simplefilter("error")
205
- assert_raises(DeprecationWarning, select, [], [])
206
-
207
- def test_non_bool_deprecation(self):
208
- choices = self.choices
209
- conditions = self.conditions[:]
210
- with warnings.catch_warnings():
211
- warnings.filterwarnings("always")
212
- conditions[0] = conditions[0].astype(np.int_)
213
- assert_warns(DeprecationWarning, select, conditions, choices)
214
- conditions[0] = conditions[0].astype(np.uint8)
215
- assert_warns(DeprecationWarning, select, conditions, choices)
216
- warnings.filterwarnings("error")
217
- assert_raises(DeprecationWarning, select, conditions, choices)
218
-
219
- def test_many_arguments(self):
220
- # This used to be limited by NPY_MAXARGS == 32
221
- conditions = [np.array([False])] * 100
222
- choices = [np.array([1])] * 100
223
- select(conditions, choices)
224
-
225
-
226
- class TestInsert(TestCase):
227
- def test_basic(self):
228
- a = [1, 2, 3]
229
- assert_equal(insert(a, 0, 1), [1, 1, 2, 3])
230
- assert_equal(insert(a, 3, 1), [1, 2, 3, 1])
231
- assert_equal(insert(a, [1, 1, 1], [1, 2, 3]), [1, 1, 2, 3, 2, 3])
232
- assert_equal(insert(a, 1, [1, 2, 3]), [1, 1, 2, 3, 2, 3])
233
- assert_equal(insert(a, [1, -1, 3], 9), [1, 9, 2, 9, 3, 9])
234
- assert_equal(insert(a, slice(-1, None, -1), 9), [9, 1, 9, 2, 9, 3])
235
- assert_equal(insert(a, [-1, 1, 3], [7, 8, 9]), [1, 8, 2, 7, 3, 9])
236
- b = np.array([0, 1], dtype=np.float64)
237
- assert_equal(insert(b, 0, b[0]), [0., 0., 1.])
238
- assert_equal(insert(b, [], []), b)
239
- # Bools will be treated differently in the future:
240
- #assert_equal(insert(a, np.array([True]*4), 9), [9,1,9,2,9,3,9])
241
- with warnings.catch_warnings(record=True) as w:
242
- warnings.filterwarnings('always', '', FutureWarning)
243
- assert_equal(
244
- insert(a, np.array([True]*4), 9), [1, 9, 9, 9, 9, 2, 3])
245
- assert_(w[0].category is FutureWarning)
246
-
247
- def test_multidim(self):
248
- a = [[1, 1, 1]]
249
- r = [[2, 2, 2],
250
- [1, 1, 1]]
251
- assert_equal(insert(a, 0, [1]), [1, 1, 1, 1])
252
- assert_equal(insert(a, 0, [2, 2, 2], axis=0), r)
253
- assert_equal(insert(a, 0, 2, axis=0), r)
254
- assert_equal(insert(a, 2, 2, axis=1), [[1, 1, 2, 1]])
255
-
256
- a = np.array([[1, 1], [2, 2], [3, 3]])
257
- b = np.arange(1, 4).repeat(3).reshape(3, 3)
258
- c = np.concatenate(
259
- (a[:, 0:1], np.arange(1, 4).repeat(3).reshape(3, 3).T,
260
- a[:, 1:2]), axis=1)
261
- assert_equal(insert(a, [1], [[1], [2], [3]], axis=1), b)
262
- assert_equal(insert(a, [1], [1, 2, 3], axis=1), c)
263
- # scalars behave differently, in this case exactly opposite:
264
- assert_equal(insert(a, 1, [1, 2, 3], axis=1), b)
265
- assert_equal(insert(a, 1, [[1], [2], [3]], axis=1), c)
266
-
267
- a = np.arange(4).reshape(2, 2)
268
- assert_equal(insert(a[:, :1], 1, a[:, 1], axis=1), a)
269
- assert_equal(insert(a[:1, :], 1, a[1, :], axis=0), a)
270
-
271
- # negative axis value
272
- a = np.arange(24).reshape((2, 3, 4))
273
- assert_equal(insert(a, 1, a[:, :, 3], axis=-1),
274
- insert(a, 1, a[:, :, 3], axis=2))
275
- assert_equal(insert(a, 1, a[:, 2, :], axis=-2),
276
- insert(a, 1, a[:, 2, :], axis=1))
277
-
278
- # invalid axis value
279
- assert_raises(IndexError, insert, a, 1, a[:, 2, :], axis=3)
280
- assert_raises(IndexError, insert, a, 1, a[:, 2, :], axis=-4)
281
-
282
- # negative axis value
283
- a = np.arange(24).reshape((2,3,4))
284
- assert_equal(insert(a, 1, a[:,:,3], axis=-1),
285
- insert(a, 1, a[:,:,3], axis=2))
286
- assert_equal(insert(a, 1, a[:,2,:], axis=-2),
287
- insert(a, 1, a[:,2,:], axis=1))
288
-
289
- def test_0d(self):
290
- # This is an error in the future
291
- a = np.array(1)
292
- with warnings.catch_warnings(record=True) as w:
293
- warnings.filterwarnings('always', '', DeprecationWarning)
294
- assert_equal(insert(a, [], 2, axis=0), np.array(2))
295
- assert_(w[0].category is DeprecationWarning)
296
-
297
- def test_subclass(self):
298
- class SubClass(np.ndarray):
299
- pass
300
- a = np.arange(10).view(SubClass)
301
- assert_(isinstance(np.insert(a, 0, [0]), SubClass))
302
- assert_(isinstance(np.insert(a, [], []), SubClass))
303
- assert_(isinstance(np.insert(a, [0, 1], [1, 2]), SubClass))
304
- assert_(isinstance(np.insert(a, slice(1, 2), [1, 2]), SubClass))
305
- assert_(isinstance(np.insert(a, slice(1, -2, -1), []), SubClass))
306
- # This is an error in the future:
307
- a = np.array(1).view(SubClass)
308
- assert_(isinstance(np.insert(a, 0, [0]), SubClass))
309
-
310
- def test_index_array_copied(self):
311
- x = np.array([1, 1, 1])
312
- np.insert([0, 1, 2], x, [3, 4, 5])
313
- assert_equal(x, np.array([1, 1, 1]))
314
-
315
- def test_structured_array(self):
316
- a = np.array([(1, 'a'), (2, 'b'), (3, 'c')],
317
- dtype=[('foo', 'i'), ('bar', 'a1')])
318
- val = (4, 'd')
319
- b = np.insert(a, 0, val)
320
- assert_array_equal(b[0], np.array(val, dtype=b.dtype))
321
- val = [(4, 'd')] * 2
322
- b = np.insert(a, [0, 2], val)
323
- assert_array_equal(b[[0, 3]], np.array(val, dtype=b.dtype))
324
-
325
-
326
- class TestAmax(TestCase):
327
- def test_basic(self):
328
- a = [3, 4, 5, 10, -3, -5, 6.0]
329
- assert_equal(np.amax(a), 10.0)
330
- b = [[3, 6.0, 9.0],
331
- [4, 10.0, 5.0],
332
- [8, 3.0, 2.0]]
333
- assert_equal(np.amax(b, axis=0), [8.0, 10.0, 9.0])
334
- assert_equal(np.amax(b, axis=1), [9.0, 10.0, 8.0])
335
-
336
-
337
- class TestAmin(TestCase):
338
- def test_basic(self):
339
- a = [3, 4, 5, 10, -3, -5, 6.0]
340
- assert_equal(np.amin(a), -5.0)
341
- b = [[3, 6.0, 9.0],
342
- [4, 10.0, 5.0],
343
- [8, 3.0, 2.0]]
344
- assert_equal(np.amin(b, axis=0), [3.0, 3.0, 2.0])
345
- assert_equal(np.amin(b, axis=1), [3.0, 4.0, 2.0])
346
-
347
-
348
- class TestPtp(TestCase):
349
- def test_basic(self):
350
- a = [3, 4, 5, 10, -3, -5, 6.0]
351
- assert_equal(np.ptp(a, axis=0), 15.0)
352
- b = [[3, 6.0, 9.0],
353
- [4, 10.0, 5.0],
354
- [8, 3.0, 2.0]]
355
- assert_equal(np.ptp(b, axis=0), [5.0, 7.0, 7.0])
356
- assert_equal(np.ptp(b, axis=-1), [6.0, 6.0, 6.0])
357
-
358
-
359
- class TestCumsum(TestCase):
360
- def test_basic(self):
361
- ba = [1, 2, 10, 11, 6, 5, 4]
362
- ba2 = [[1, 2, 3, 4], [5, 6, 7, 9], [10, 3, 4, 5]]
363
- for ctype in [np.int8, np.uint8, np.int16, np.uint16, np.int32,
364
- np.uint32, np.float32, np.float64, np.complex64, np.complex128]:
365
- a = np.array(ba, ctype)
366
- a2 = np.array(ba2, ctype)
367
-
368
- tgt = np.array([1, 3, 13, 24, 30, 35, 39], ctype)
369
- assert_array_equal(np.cumsum(a, axis=0), tgt)
370
-
371
- tgt = np.array(
372
- [[1, 2, 3, 4], [6, 8, 10, 13], [16, 11, 14, 18]], ctype)
373
- assert_array_equal(np.cumsum(a2, axis=0), tgt)
374
-
375
- tgt = np.array(
376
- [[1, 3, 6, 10], [5, 11, 18, 27], [10, 13, 17, 22]], ctype)
377
- assert_array_equal(np.cumsum(a2, axis=1), tgt)
378
-
379
-
380
- class TestProd(TestCase):
381
- def test_basic(self):
382
- ba = [1, 2, 10, 11, 6, 5, 4]
383
- ba2 = [[1, 2, 3, 4], [5, 6, 7, 9], [10, 3, 4, 5]]
384
- for ctype in [np.int16, np.uint16, np.int32, np.uint32,
385
- np.float32, np.float64, np.complex64, np.complex128]:
386
- a = np.array(ba, ctype)
387
- a2 = np.array(ba2, ctype)
388
- if ctype in ['1', 'b']:
389
- self.assertRaises(ArithmeticError, prod, a)
390
- self.assertRaises(ArithmeticError, prod, a2, 1)
391
- self.assertRaises(ArithmeticError, prod, a)
392
- else:
393
- assert_equal(np.prod(a, axis=0), 26400)
394
- assert_array_equal(np.prod(a2, axis=0),
395
- np.array([50, 36, 84, 180], ctype))
396
- assert_array_equal(np.prod(a2, axis=-1),
397
- np.array([24, 1890, 600], ctype))
398
-
399
-
400
- class TestCumprod(TestCase):
401
- def test_basic(self):
402
- ba = [1, 2, 10, 11, 6, 5, 4]
403
- ba2 = [[1, 2, 3, 4], [5, 6, 7, 9], [10, 3, 4, 5]]
404
- for ctype in [np.int16, np.uint16, np.int32, np.uint32,
405
- np.float32, np.float64, np.complex64, np.complex128]:
406
- a = np.array(ba, ctype)
407
- a2 = np.array(ba2, ctype)
408
- if ctype in ['1', 'b']:
409
- self.assertRaises(ArithmeticError, cumprod, a)
410
- self.assertRaises(ArithmeticError, cumprod, a2, 1)
411
- self.assertRaises(ArithmeticError, cumprod, a)
412
- else:
413
- assert_array_equal(np.cumprod(a, axis=-1),
414
- np.array([1, 2, 20, 220,
415
- 1320, 6600, 26400], ctype))
416
- assert_array_equal(np.cumprod(a2, axis=0),
417
- np.array([[1, 2, 3, 4],
418
- [5, 12, 21, 36],
419
- [50, 36, 84, 180]], ctype))
420
- assert_array_equal(np.cumprod(a2, axis=-1),
421
- np.array([[1, 2, 6, 24],
422
- [5, 30, 210, 1890],
423
- [10, 30, 120, 600]], ctype))
424
-
425
-
426
- class TestDiff(TestCase):
427
- def test_basic(self):
428
- x = [1, 4, 6, 7, 12]
429
- out = np.array([3, 2, 1, 5])
430
- out2 = np.array([-1, -1, 4])
431
- out3 = np.array([0, 5])
432
- assert_array_equal(diff(x), out)
433
- assert_array_equal(diff(x, n=2), out2)
434
- assert_array_equal(diff(x, n=3), out3)
435
-
436
- def test_nd(self):
437
- x = 20 * rand(10, 20, 30)
438
- out1 = x[:, :, 1:] - x[:, :, :-1]
439
- out2 = out1[:, :, 1:] - out1[:, :, :-1]
440
- out3 = x[1:, :, :] - x[:-1, :, :]
441
- out4 = out3[1:, :, :] - out3[:-1, :, :]
442
- assert_array_equal(diff(x), out1)
443
- assert_array_equal(diff(x, n=2), out2)
444
- assert_array_equal(diff(x, axis=0), out3)
445
- assert_array_equal(diff(x, n=2, axis=0), out4)
446
-
447
-
448
- class TestDelete(TestCase):
449
- def setUp(self):
450
- self.a = np.arange(5)
451
- self.nd_a = np.arange(5).repeat(2).reshape(1, 5, 2)
452
-
453
- def _check_inverse_of_slicing(self, indices):
454
- a_del = delete(self.a, indices)
455
- nd_a_del = delete(self.nd_a, indices, axis=1)
456
- msg = 'Delete failed for obj: %r' % indices
457
- # NOTE: The cast should be removed after warning phase for bools
458
- if not isinstance(indices, (slice, int, long, np.integer)):
459
- indices = np.asarray(indices, dtype=np.intp)
460
- indices = indices[(indices >= 0) & (indices < 5)]
461
- assert_array_equal(setxor1d(a_del, self.a[indices, ]), self.a,
462
- err_msg=msg)
463
- xor = setxor1d(nd_a_del[0, :, 0], self.nd_a[0, indices, 0])
464
- assert_array_equal(xor, self.nd_a[0, :, 0], err_msg=msg)
465
-
466
- def test_slices(self):
467
- lims = [-6, -2, 0, 1, 2, 4, 5]
468
- steps = [-3, -1, 1, 3]
469
- for start in lims:
470
- for stop in lims:
471
- for step in steps:
472
- s = slice(start, stop, step)
473
- self._check_inverse_of_slicing(s)
474
-
475
- def test_fancy(self):
476
- # Deprecation/FutureWarning tests should be kept after change.
477
- self._check_inverse_of_slicing(np.array([[0, 1], [2, 1]]))
478
- with warnings.catch_warnings():
479
- warnings.filterwarnings('error', category=DeprecationWarning)
480
- assert_raises(DeprecationWarning, delete, self.a, [100])
481
- assert_raises(DeprecationWarning, delete, self.a, [-100])
482
- with warnings.catch_warnings(record=True) as w:
483
- warnings.filterwarnings('always', category=FutureWarning)
484
- self._check_inverse_of_slicing([0, -1, 2, 2])
485
- obj = np.array([True, False, False], dtype=bool)
486
- self._check_inverse_of_slicing(obj)
487
- assert_(w[0].category is FutureWarning)
488
- assert_(w[1].category is FutureWarning)
489
-
490
- def test_single(self):
491
- self._check_inverse_of_slicing(0)
492
- self._check_inverse_of_slicing(-4)
493
-
494
- def test_0d(self):
495
- a = np.array(1)
496
- with warnings.catch_warnings(record=True) as w:
497
- warnings.filterwarnings('always', '', DeprecationWarning)
498
- assert_equal(delete(a, [], axis=0), a)
499
- assert_(w[0].category is DeprecationWarning)
500
-
501
- def test_subclass(self):
502
- class SubClass(np.ndarray):
503
- pass
504
- a = self.a.view(SubClass)
505
- assert_(isinstance(delete(a, 0), SubClass))
506
- assert_(isinstance(delete(a, []), SubClass))
507
- assert_(isinstance(delete(a, [0, 1]), SubClass))
508
- assert_(isinstance(delete(a, slice(1, 2)), SubClass))
509
- assert_(isinstance(delete(a, slice(1, -2)), SubClass))
510
-
511
-
512
- class TestGradient(TestCase):
513
- def test_basic(self):
514
- v = [[1, 1], [3, 4]]
515
- x = np.array(v)
516
- dx = [np.array([[2., 3.], [2., 3.]]),
517
- np.array([[0., 0.], [1., 1.]])]
518
- assert_array_equal(gradient(x), dx)
519
- assert_array_equal(gradient(v), dx)
520
-
521
- def test_badargs(self):
522
- # for 2D array, gradient can take 0, 1, or 2 extra args
523
- x = np.array([[1, 1], [3, 4]])
524
- assert_raises(SyntaxError, gradient, x, np.array([1., 1.]),
525
- np.array([1., 1.]), np.array([1., 1.]))
526
-
527
- def test_masked(self):
528
- # Make sure that gradient supports subclasses like masked arrays
529
- x = np.ma.array([[1, 1], [3, 4]],
530
- mask=[[False, False], [False, False]])
531
- out = gradient(x)[0]
532
- assert_equal(type(out), type(x))
533
- # And make sure that the output and input don't have aliased mask
534
- # arrays
535
- assert_(x.mask is not out.mask)
536
- # Also check that edge_order=2 doesn't alter the original mask
537
- x2 = np.ma.arange(5)
538
- x2[2] = np.ma.masked
539
- np.gradient(x2, edge_order=2)
540
- assert_array_equal(x2.mask, [False, False, True, False, False])
541
-
542
- def test_datetime64(self):
543
- # Make sure gradient() can handle special types like datetime64
544
- x = np.array(
545
- ['1910-08-16', '1910-08-11', '1910-08-10', '1910-08-12',
546
- '1910-10-12', '1910-12-12', '1912-12-12'],
547
- dtype='datetime64[D]')
548
- dx = np.array(
549
- [-5, -3, 0, 31, 61, 396, 731],
550
- dtype='timedelta64[D]')
551
- assert_array_equal(gradient(x), dx)
552
- assert_(dx.dtype == np.dtype('timedelta64[D]'))
553
-
554
- def test_timedelta64(self):
555
- # Make sure gradient() can handle special types like timedelta64
556
- x = np.array(
557
- [-5, -3, 10, 12, 61, 321, 300],
558
- dtype='timedelta64[D]')
559
- dx = np.array(
560
- [2, 7, 7, 25, 154, 119, -21],
561
- dtype='timedelta64[D]')
562
- assert_array_equal(gradient(x), dx)
563
- assert_(dx.dtype == np.dtype('timedelta64[D]'))
564
-
565
- def test_second_order_accurate(self):
566
- # Testing that the relative numerical error is less that 3% for
567
- # this example problem. This corresponds to second order
568
- # accurate finite differences for all interior and boundary
569
- # points.
570
- x = np.linspace(0, 1, 10)
571
- dx = x[1] - x[0]
572
- y = 2 * x ** 3 + 4 * x ** 2 + 2 * x
573
- analytical = 6 * x ** 2 + 8 * x + 2
574
- num_error = np.abs((np.gradient(y, dx, edge_order=2) / analytical) - 1)
575
- assert_(np.all(num_error < 0.03) == True)
576
-
577
-
578
- class TestAngle(TestCase):
579
- def test_basic(self):
580
- x = [1 + 3j, np.sqrt(2) / 2.0 + 1j * np.sqrt(2) / 2,
581
- 1, 1j, -1, -1j, 1 - 3j, -1 + 3j]
582
- y = angle(x)
583
- yo = [
584
- np.arctan(3.0 / 1.0),
585
- np.arctan(1.0), 0, np.pi / 2, np.pi, -np.pi / 2.0,
586
- -np.arctan(3.0 / 1.0), np.pi - np.arctan(3.0 / 1.0)]
587
- z = angle(x, deg=1)
588
- zo = np.array(yo) * 180 / np.pi
589
- assert_array_almost_equal(y, yo, 11)
590
- assert_array_almost_equal(z, zo, 11)
591
-
592
-
593
- class TestTrimZeros(TestCase):
594
- """ only testing for integer splits.
595
- """
596
- def test_basic(self):
597
- a = np.array([0, 0, 1, 2, 3, 4, 0])
598
- res = trim_zeros(a)
599
- assert_array_equal(res, np.array([1, 2, 3, 4]))
600
-
601
- def test_leading_skip(self):
602
- a = np.array([0, 0, 1, 0, 2, 3, 4, 0])
603
- res = trim_zeros(a)
604
- assert_array_equal(res, np.array([1, 0, 2, 3, 4]))
605
-
606
- def test_trailing_skip(self):
607
- a = np.array([0, 0, 1, 0, 2, 3, 0, 4, 0])
608
- res = trim_zeros(a)
609
- assert_array_equal(res, np.array([1, 0, 2, 3, 0, 4]))
610
-
611
-
612
- class TestExtins(TestCase):
613
- def test_basic(self):
614
- a = np.array([1, 3, 2, 1, 2, 3, 3])
615
- b = extract(a > 1, a)
616
- assert_array_equal(b, [3, 2, 2, 3, 3])
617
-
618
- def test_place(self):
619
- a = np.array([1, 4, 3, 2, 5, 8, 7])
620
- place(a, [0, 1, 0, 1, 0, 1, 0], [2, 4, 6])
621
- assert_array_equal(a, [1, 2, 3, 4, 5, 6, 7])
622
-
623
- def test_both(self):
624
- a = rand(10)
625
- mask = a > 0.5
626
- ac = a.copy()
627
- c = extract(mask, a)
628
- place(a, mask, 0)
629
- place(a, mask, c)
630
- assert_array_equal(a, ac)
631
-
632
-
633
- class TestVectorize(TestCase):
634
- def test_simple(self):
635
- def addsubtract(a, b):
636
- if a > b:
637
- return a - b
638
- else:
639
- return a + b
640
- f = vectorize(addsubtract)
641
- r = f([0, 3, 6, 9], [1, 3, 5, 7])
642
- assert_array_equal(r, [1, 6, 1, 2])
643
-
644
- def test_scalar(self):
645
- def addsubtract(a, b):
646
- if a > b:
647
- return a - b
648
- else:
649
- return a + b
650
- f = vectorize(addsubtract)
651
- r = f([0, 3, 6, 9], 5)
652
- assert_array_equal(r, [5, 8, 1, 4])
653
-
654
- def test_large(self):
655
- x = np.linspace(-3, 2, 10000)
656
- f = vectorize(lambda x: x)
657
- y = f(x)
658
- assert_array_equal(y, x)
659
-
660
- def test_ufunc(self):
661
- import math
662
- f = vectorize(math.cos)
663
- args = np.array([0, 0.5*np.pi, np.pi, 1.5*np.pi, 2*np.pi])
664
- r1 = f(args)
665
- r2 = np.cos(args)
666
- assert_array_equal(r1, r2)
667
-
668
- def test_keywords(self):
669
- import math
670
-
671
- def foo(a, b=1):
672
- return a + b
673
- f = vectorize(foo)
674
- args = np.array([1, 2, 3])
675
- r1 = f(args)
676
- r2 = np.array([2, 3, 4])
677
- assert_array_equal(r1, r2)
678
- r1 = f(args, 2)
679
- r2 = np.array([3, 4, 5])
680
- assert_array_equal(r1, r2)
681
-
682
- def test_keywords_no_func_code(self):
683
- # This needs to test a function that has keywords but
684
- # no func_code attribute, since otherwise vectorize will
685
- # inspect the func_code.
686
- import random
687
- try:
688
- f = vectorize(random.randrange)
689
- except:
690
- raise AssertionError()
691
-
692
- def test_keywords2_ticket_2100(self):
693
- r"""Test kwarg support: enhancement ticket 2100"""
694
- import math
695
-
696
- def foo(a, b=1):
697
- return a + b
698
- f = vectorize(foo)
699
- args = np.array([1, 2, 3])
700
- r1 = f(a=args)
701
- r2 = np.array([2, 3, 4])
702
- assert_array_equal(r1, r2)
703
- r1 = f(b=1, a=args)
704
- assert_array_equal(r1, r2)
705
- r1 = f(args, b=2)
706
- r2 = np.array([3, 4, 5])
707
- assert_array_equal(r1, r2)
708
-
709
- def test_keywords3_ticket_2100(self):
710
- """Test excluded with mixed positional and kwargs: ticket 2100"""
711
- def mypolyval(x, p):
712
- _p = list(p)
713
- res = _p.pop(0)
714
- while _p:
715
- res = res*x + _p.pop(0)
716
- return res
717
- vpolyval = np.vectorize(mypolyval, excluded=['p', 1])
718
- ans = [3, 6]
719
- assert_array_equal(ans, vpolyval(x=[0, 1], p=[1, 2, 3]))
720
- assert_array_equal(ans, vpolyval([0, 1], p=[1, 2, 3]))
721
- assert_array_equal(ans, vpolyval([0, 1], [1, 2, 3]))
722
-
723
- def test_keywords4_ticket_2100(self):
724
- """Test vectorizing function with no positional args."""
725
- @vectorize
726
- def f(**kw):
727
- res = 1.0
728
- for _k in kw:
729
- res *= kw[_k]
730
- return res
731
- assert_array_equal(f(a=[1, 2], b=[3, 4]), [3, 8])
732
-
733
- def test_keywords5_ticket_2100(self):
734
- """Test vectorizing function with no kwargs args."""
735
- @vectorize
736
- def f(*v):
737
- return np.prod(v)
738
- assert_array_equal(f([1, 2], [3, 4]), [3, 8])
739
-
740
- def test_coverage1_ticket_2100(self):
741
- def foo():
742
- return 1
743
- f = vectorize(foo)
744
- assert_array_equal(f(), 1)
745
-
746
- def test_assigning_docstring(self):
747
- def foo(x):
748
- return x
749
- doc = "Provided documentation"
750
- f = vectorize(foo, doc=doc)
751
- assert_equal(f.__doc__, doc)
752
-
753
- def test_UnboundMethod_ticket_1156(self):
754
- """Regression test for issue 1156"""
755
- class Foo:
756
- b = 2
757
-
758
- def bar(self, a):
759
- return a**self.b
760
- assert_array_equal(vectorize(Foo().bar)(np.arange(9)),
761
- np.arange(9)**2)
762
- assert_array_equal(vectorize(Foo.bar)(Foo(), np.arange(9)),
763
- np.arange(9)**2)
764
-
765
- def test_execution_order_ticket_1487(self):
766
- """Regression test for dependence on execution order: issue 1487"""
767
- f1 = vectorize(lambda x: x)
768
- res1a = f1(np.arange(3))
769
- res1b = f1(np.arange(0.1, 3))
770
- f2 = vectorize(lambda x: x)
771
- res2b = f2(np.arange(0.1, 3))
772
- res2a = f2(np.arange(3))
773
- assert_equal(res1a, res2a)
774
- assert_equal(res1b, res2b)
775
-
776
- def test_string_ticket_1892(self):
777
- """Test vectorization over strings: issue 1892."""
778
- f = np.vectorize(lambda x: x)
779
- s = '0123456789'*10
780
- assert_equal(s, f(s))
781
- #z = f(np.array([s,s]))
782
- #assert_array_equal([s,s], f(s))
783
-
784
- def test_cache(self):
785
- """Ensure that vectorized func called exactly once per argument."""
786
- _calls = [0]
787
-
788
- @vectorize
789
- def f(x):
790
- _calls[0] += 1
791
- return x**2
792
- f.cache = True
793
- x = np.arange(5)
794
- assert_array_equal(f(x), x*x)
795
- assert_equal(_calls[0], len(x))
796
-
797
- def test_otypes(self):
798
- f = np.vectorize(lambda x: x)
799
- f.otypes = 'i'
800
- x = np.arange(5)
801
- assert_array_equal(f(x), x)
802
-
803
-
804
- class TestDigitize(TestCase):
805
- def test_forward(self):
806
- x = np.arange(-6, 5)
807
- bins = np.arange(-5, 5)
808
- assert_array_equal(digitize(x, bins), np.arange(11))
809
-
810
- def test_reverse(self):
811
- x = np.arange(5, -6, -1)
812
- bins = np.arange(5, -5, -1)
813
- assert_array_equal(digitize(x, bins), np.arange(11))
814
-
815
- def test_random(self):
816
- x = rand(10)
817
- bin = np.linspace(x.min(), x.max(), 10)
818
- assert_(np.all(digitize(x, bin) != 0))
819
-
820
- def test_right_basic(self):
821
- x = [1, 5, 4, 10, 8, 11, 0]
822
- bins = [1, 5, 10]
823
- default_answer = [1, 2, 1, 3, 2, 3, 0]
824
- assert_array_equal(digitize(x, bins), default_answer)
825
- right_answer = [0, 1, 1, 2, 2, 3, 0]
826
- assert_array_equal(digitize(x, bins, True), right_answer)
827
-
828
- def test_right_open(self):
829
- x = np.arange(-6, 5)
830
- bins = np.arange(-6, 4)
831
- assert_array_equal(digitize(x, bins, True), np.arange(11))
832
-
833
- def test_right_open_reverse(self):
834
- x = np.arange(5, -6, -1)
835
- bins = np.arange(4, -6, -1)
836
- assert_array_equal(digitize(x, bins, True), np.arange(11))
837
-
838
- def test_right_open_random(self):
839
- x = rand(10)
840
- bins = np.linspace(x.min(), x.max(), 10)
841
- assert_(np.all(digitize(x, bins, True) != 10))
842
-
843
- def test_monotonic(self):
844
- x = [-1, 0, 1, 2]
845
- bins = [0, 0, 1]
846
- assert_array_equal(digitize(x, bins, False), [0, 2, 3, 3])
847
- assert_array_equal(digitize(x, bins, True), [0, 0, 2, 3])
848
- bins = [1, 1, 0]
849
- assert_array_equal(digitize(x, bins, False), [3, 2, 0, 0])
850
- assert_array_equal(digitize(x, bins, True), [3, 3, 2, 0])
851
- bins = [1, 1, 1, 1]
852
- assert_array_equal(digitize(x, bins, False), [0, 0, 4, 4])
853
- assert_array_equal(digitize(x, bins, True), [0, 0, 0, 4])
854
- bins = [0, 0, 1, 0]
855
- assert_raises(ValueError, digitize, x, bins)
856
- bins = [1, 1, 0, 1]
857
- assert_raises(ValueError, digitize, x, bins)
858
-
859
-
860
- class TestUnwrap(TestCase):
861
- def test_simple(self):
862
- #check that unwrap removes jumps greather that 2*pi
863
- assert_array_equal(unwrap([1, 1 + 2 * np.pi]), [1, 1])
864
- #check that unwrap maintans continuity
865
- assert_(np.all(diff(unwrap(rand(10) * 100)) < np.pi))
866
-
867
-
868
- class TestFilterwindows(TestCase):
869
- def test_hanning(self):
870
- #check symmetry
871
- w = hanning(10)
872
- assert_array_almost_equal(w, flipud(w), 7)
873
- #check known value
874
- assert_almost_equal(np.sum(w, axis=0), 4.500, 4)
875
-
876
- def test_hamming(self):
877
- #check symmetry
878
- w = hamming(10)
879
- assert_array_almost_equal(w, flipud(w), 7)
880
- #check known value
881
- assert_almost_equal(np.sum(w, axis=0), 4.9400, 4)
882
-
883
- def test_bartlett(self):
884
- #check symmetry
885
- w = bartlett(10)
886
- assert_array_almost_equal(w, flipud(w), 7)
887
- #check known value
888
- assert_almost_equal(np.sum(w, axis=0), 4.4444, 4)
889
-
890
- def test_blackman(self):
891
- #check symmetry
892
- w = blackman(10)
893
- assert_array_almost_equal(w, flipud(w), 7)
894
- #check known value
895
- assert_almost_equal(np.sum(w, axis=0), 3.7800, 4)
896
-
897
-
898
- class TestTrapz(TestCase):
899
- def test_simple(self):
900
- x = np.arange(-10, 10, .1)
901
- r = trapz(np.exp(-.5*x**2) / np.sqrt(2*np.pi), dx=0.1)
902
- #check integral of normal equals 1
903
- assert_almost_equal(r, 1, 7)
904
-
905
- def test_ndim(self):
906
- x = np.linspace(0, 1, 3)
907
- y = np.linspace(0, 2, 8)
908
- z = np.linspace(0, 3, 13)
909
-
910
- wx = np.ones_like(x) * (x[1] - x[0])
911
- wx[0] /= 2
912
- wx[-1] /= 2
913
- wy = np.ones_like(y) * (y[1] - y[0])
914
- wy[0] /= 2
915
- wy[-1] /= 2
916
- wz = np.ones_like(z) * (z[1] - z[0])
917
- wz[0] /= 2
918
- wz[-1] /= 2
919
-
920
- q = x[:, None, None] + y[None, :, None] + z[None, None, :]
921
-
922
- qx = (q * wx[:, None, None]).sum(axis=0)
923
- qy = (q * wy[None, :, None]).sum(axis=1)
924
- qz = (q * wz[None, None, :]).sum(axis=2)
925
-
926
- # n-d `x`
927
- r = trapz(q, x=x[:, None, None], axis=0)
928
- assert_almost_equal(r, qx)
929
- r = trapz(q, x=y[None, :, None], axis=1)
930
- assert_almost_equal(r, qy)
931
- r = trapz(q, x=z[None, None, :], axis=2)
932
- assert_almost_equal(r, qz)
933
-
934
- # 1-d `x`
935
- r = trapz(q, x=x, axis=0)
936
- assert_almost_equal(r, qx)
937
- r = trapz(q, x=y, axis=1)
938
- assert_almost_equal(r, qy)
939
- r = trapz(q, x=z, axis=2)
940
- assert_almost_equal(r, qz)
941
-
942
- def test_masked(self):
943
- #Testing that masked arrays behave as if the function is 0 where
944
- #masked
945
- x = np.arange(5)
946
- y = x * x
947
- mask = x == 2
948
- ym = np.ma.array(y, mask=mask)
949
- r = 13.0 # sum(0.5 * (0 + 1) * 1.0 + 0.5 * (9 + 16))
950
- assert_almost_equal(trapz(ym, x), r)
951
-
952
- xm = np.ma.array(x, mask=mask)
953
- assert_almost_equal(trapz(ym, xm), r)
954
-
955
- xm = np.ma.array(x, mask=mask)
956
- assert_almost_equal(trapz(y, xm), r)
957
-
958
- def test_matrix(self):
959
- #Test to make sure matrices give the same answer as ndarrays
960
- x = np.linspace(0, 5)
961
- y = x * x
962
- r = trapz(y, x)
963
- mx = np.matrix(x)
964
- my = np.matrix(y)
965
- mr = trapz(my, mx)
966
- assert_almost_equal(mr, r)
967
-
968
-
969
- class TestSinc(TestCase):
970
- def test_simple(self):
971
- assert_(sinc(0) == 1)
972
- w = sinc(np.linspace(-1, 1, 100))
973
- #check symmetry
974
- assert_array_almost_equal(w, flipud(w), 7)
975
-
976
- def test_array_like(self):
977
- x = [0, 0.5]
978
- y1 = sinc(np.array(x))
979
- y2 = sinc(list(x))
980
- y3 = sinc(tuple(x))
981
- assert_array_equal(y1, y2)
982
- assert_array_equal(y1, y3)
983
-
984
-
985
- class TestHistogram(TestCase):
986
- def setUp(self):
987
- pass
988
-
989
- def tearDown(self):
990
- pass
991
-
992
- def test_simple(self):
993
- n = 100
994
- v = rand(n)
995
- (a, b) = histogram(v)
996
- #check if the sum of the bins equals the number of samples
997
- assert_equal(np.sum(a, axis=0), n)
998
- #check that the bin counts are evenly spaced when the data is from a
999
- # linear function
1000
- (a, b) = histogram(np.linspace(0, 10, 100))
1001
- assert_array_equal(a, 10)
1002
-
1003
- def test_one_bin(self):
1004
- # Ticket 632
1005
- hist, edges = histogram([1, 2, 3, 4], [1, 2])
1006
- assert_array_equal(hist, [2, ])
1007
- assert_array_equal(edges, [1, 2])
1008
- assert_raises(ValueError, histogram, [1, 2], bins=0)
1009
- h, e = histogram([1, 2], bins=1)
1010
- assert_equal(h, np.array([2]))
1011
- assert_allclose(e, np.array([1., 2.]))
1012
-
1013
- def test_normed(self):
1014
- # Check that the integral of the density equals 1.
1015
- n = 100
1016
- v = rand(n)
1017
- a, b = histogram(v, normed=True)
1018
- area = np.sum(a * diff(b))
1019
- assert_almost_equal(area, 1)
1020
-
1021
- # Check with non-constant bin widths (buggy but backwards compatible)
1022
- v = np.arange(10)
1023
- bins = [0, 1, 5, 9, 10]
1024
- a, b = histogram(v, bins, normed=True)
1025
- area = np.sum(a * diff(b))
1026
- assert_almost_equal(area, 1)
1027
-
1028
- def test_density(self):
1029
- # Check that the integral of the density equals 1.
1030
- n = 100
1031
- v = rand(n)
1032
- a, b = histogram(v, density=True)
1033
- area = np.sum(a * diff(b))
1034
- assert_almost_equal(area, 1)
1035
-
1036
- # Check with non-constant bin widths
1037
- v = np.arange(10)
1038
- bins = [0, 1, 3, 6, 10]
1039
- a, b = histogram(v, bins, density=True)
1040
- assert_array_equal(a, .1)
1041
- assert_equal(np.sum(a*diff(b)), 1)
1042
-
1043
- # Variale bin widths are especially useful to deal with
1044
- # infinities.
1045
- v = np.arange(10)
1046
- bins = [0, 1, 3, 6, np.inf]
1047
- a, b = histogram(v, bins, density=True)
1048
- assert_array_equal(a, [.1, .1, .1, 0.])
1049
-
1050
- # Taken from a bug report from N. Becker on the numpy-discussion
1051
- # mailing list Aug. 6, 2010.
1052
- counts, dmy = np.histogram(
1053
- [1, 2, 3, 4], [0.5, 1.5, np.inf], density=True)
1054
- assert_equal(counts, [.25, 0])
1055
-
1056
- def test_outliers(self):
1057
- # Check that outliers are not tallied
1058
- a = np.arange(10) + .5
1059
-
1060
- # Lower outliers
1061
- h, b = histogram(a, range=[0, 9])
1062
- assert_equal(h.sum(), 9)
1063
-
1064
- # Upper outliers
1065
- h, b = histogram(a, range=[1, 10])
1066
- assert_equal(h.sum(), 9)
1067
-
1068
- # Normalization
1069
- h, b = histogram(a, range=[1, 9], normed=True)
1070
- assert_almost_equal((h * diff(b)).sum(), 1, decimal=15)
1071
-
1072
- # Weights
1073
- w = np.arange(10) + .5
1074
- h, b = histogram(a, range=[1, 9], weights=w, normed=True)
1075
- assert_equal((h * diff(b)).sum(), 1)
1076
-
1077
- h, b = histogram(a, bins=8, range=[1, 9], weights=w)
1078
- assert_equal(h, w[1:-1])
1079
-
1080
- def test_type(self):
1081
- # Check the type of the returned histogram
1082
- a = np.arange(10) + .5
1083
- h, b = histogram(a)
1084
- assert_(issubdtype(h.dtype, int))
1085
-
1086
- h, b = histogram(a, normed=True)
1087
- assert_(issubdtype(h.dtype, float))
1088
-
1089
- h, b = histogram(a, weights=np.ones(10, int))
1090
- assert_(issubdtype(h.dtype, int))
1091
-
1092
- h, b = histogram(a, weights=np.ones(10, float))
1093
- assert_(issubdtype(h.dtype, float))
1094
-
1095
- def test_f32_rounding(self):
1096
- # gh-4799, check that the rounding of the edges works with float32
1097
- x = np.array([276.318359 , -69.593948 , 21.329449], dtype=np.float32)
1098
- y = np.array([5005.689453, 4481.327637, 6010.369629], dtype=np.float32)
1099
- counts_hist, xedges, yedges = np.histogram2d(x, y, bins=100)
1100
- assert_equal(counts_hist.sum(), 3.)
1101
-
1102
- def test_weights(self):
1103
- v = rand(100)
1104
- w = np.ones(100) * 5
1105
- a, b = histogram(v)
1106
- na, nb = histogram(v, normed=True)
1107
- wa, wb = histogram(v, weights=w)
1108
- nwa, nwb = histogram(v, weights=w, normed=True)
1109
- assert_array_almost_equal(a * 5, wa)
1110
- assert_array_almost_equal(na, nwa)
1111
-
1112
- # Check weights are properly applied.
1113
- v = np.linspace(0, 10, 10)
1114
- w = np.concatenate((np.zeros(5), np.ones(5)))
1115
- wa, wb = histogram(v, bins=np.arange(11), weights=w)
1116
- assert_array_almost_equal(wa, w)
1117
-
1118
- # Check with integer weights
1119
- wa, wb = histogram([1, 2, 2, 4], bins=4, weights=[4, 3, 2, 1])
1120
- assert_array_equal(wa, [4, 5, 0, 1])
1121
- wa, wb = histogram(
1122
- [1, 2, 2, 4], bins=4, weights=[4, 3, 2, 1], normed=True)
1123
- assert_array_almost_equal(wa, np.array([4, 5, 0, 1]) / 10. / 3. * 4)
1124
-
1125
- # Check weights with non-uniform bin widths
1126
- a, b = histogram(
1127
- np.arange(9), [0, 1, 3, 6, 10],
1128
- weights=[2, 1, 1, 1, 1, 1, 1, 1, 1], density=True)
1129
- assert_almost_equal(a, [.2, .1, .1, .075])
1130
-
1131
- def test_empty(self):
1132
- a, b = histogram([], bins=([0, 1]))
1133
- assert_array_equal(a, np.array([0]))
1134
- assert_array_equal(b, np.array([0, 1]))
1135
-
1136
-
1137
- class TestHistogramdd(TestCase):
1138
- def test_simple(self):
1139
- x = np.array([[-.5, .5, 1.5], [-.5, 1.5, 2.5], [-.5, 2.5, .5],
1140
- [.5, .5, 1.5], [.5, 1.5, 2.5], [.5, 2.5, 2.5]])
1141
- H, edges = histogramdd(x, (2, 3, 3),
1142
- range=[[-1, 1], [0, 3], [0, 3]])
1143
- answer = np.array([[[0, 1, 0], [0, 0, 1], [1, 0, 0]],
1144
- [[0, 1, 0], [0, 0, 1], [0, 0, 1]]])
1145
- assert_array_equal(H, answer)
1146
-
1147
- # Check normalization
1148
- ed = [[-2, 0, 2], [0, 1, 2, 3], [0, 1, 2, 3]]
1149
- H, edges = histogramdd(x, bins=ed, normed=True)
1150
- assert_(np.all(H == answer / 12.))
1151
-
1152
- # Check that H has the correct shape.
1153
- H, edges = histogramdd(x, (2, 3, 4),
1154
- range=[[-1, 1], [0, 3], [0, 4]],
1155
- normed=True)
1156
- answer = np.array([[[0, 1, 0, 0], [0, 0, 1, 0], [1, 0, 0, 0]],
1157
- [[0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 1, 0]]])
1158
- assert_array_almost_equal(H, answer / 6., 4)
1159
- # Check that a sequence of arrays is accepted and H has the correct
1160
- # shape.
1161
- z = [np.squeeze(y) for y in split(x, 3, axis=1)]
1162
- H, edges = histogramdd(
1163
- z, bins=(4, 3, 2), range=[[-2, 2], [0, 3], [0, 2]])
1164
- answer = np.array([[[0, 0], [0, 0], [0, 0]],
1165
- [[0, 1], [0, 0], [1, 0]],
1166
- [[0, 1], [0, 0], [0, 0]],
1167
- [[0, 0], [0, 0], [0, 0]]])
1168
- assert_array_equal(H, answer)
1169
-
1170
- Z = np.zeros((5, 5, 5))
1171
- Z[list(range(5)), list(range(5)), list(range(5))] = 1.
1172
- H, edges = histogramdd([np.arange(5), np.arange(5), np.arange(5)], 5)
1173
- assert_array_equal(H, Z)
1174
-
1175
- def test_shape_3d(self):
1176
- # All possible permutations for bins of different lengths in 3D.
1177
- bins = ((5, 4, 6), (6, 4, 5), (5, 6, 4), (4, 6, 5), (6, 5, 4),
1178
- (4, 5, 6))
1179
- r = rand(10, 3)
1180
- for b in bins:
1181
- H, edges = histogramdd(r, b)
1182
- assert_(H.shape == b)
1183
-
1184
- def test_shape_4d(self):
1185
- # All possible permutations for bins of different lengths in 4D.
1186
- bins = ((7, 4, 5, 6), (4, 5, 7, 6), (5, 6, 4, 7), (7, 6, 5, 4),
1187
- (5, 7, 6, 4), (4, 6, 7, 5), (6, 5, 7, 4), (7, 5, 4, 6),
1188
- (7, 4, 6, 5), (6, 4, 7, 5), (6, 7, 5, 4), (4, 6, 5, 7),
1189
- (4, 7, 5, 6), (5, 4, 6, 7), (5, 7, 4, 6), (6, 7, 4, 5),
1190
- (6, 5, 4, 7), (4, 7, 6, 5), (4, 5, 6, 7), (7, 6, 4, 5),
1191
- (5, 4, 7, 6), (5, 6, 7, 4), (6, 4, 5, 7), (7, 5, 6, 4))
1192
-
1193
- r = rand(10, 4)
1194
- for b in bins:
1195
- H, edges = histogramdd(r, b)
1196
- assert_(H.shape == b)
1197
-
1198
- def test_weights(self):
1199
- v = rand(100, 2)
1200
- hist, edges = histogramdd(v)
1201
- n_hist, edges = histogramdd(v, normed=True)
1202
- w_hist, edges = histogramdd(v, weights=np.ones(100))
1203
- assert_array_equal(w_hist, hist)
1204
- w_hist, edges = histogramdd(v, weights=np.ones(100) * 2, normed=True)
1205
- assert_array_equal(w_hist, n_hist)
1206
- w_hist, edges = histogramdd(v, weights=np.ones(100, int) * 2)
1207
- assert_array_equal(w_hist, 2 * hist)
1208
-
1209
- def test_identical_samples(self):
1210
- x = np.zeros((10, 2), int)
1211
- hist, edges = histogramdd(x, bins=2)
1212
- assert_array_equal(edges[0], np.array([-0.5, 0., 0.5]))
1213
-
1214
- def test_empty(self):
1215
- a, b = histogramdd([[], []], bins=([0, 1], [0, 1]))
1216
- assert_array_max_ulp(a, np.array([[0.]]))
1217
- a, b = np.histogramdd([[], [], []], bins=2)
1218
- assert_array_max_ulp(a, np.zeros((2, 2, 2)))
1219
-
1220
- def test_bins_errors(self):
1221
- """There are two ways to specify bins. Check for the right errors when
1222
- mixing those."""
1223
- x = np.arange(8).reshape(2, 4)
1224
- assert_raises(ValueError, np.histogramdd, x, bins=[-1, 2, 4, 5])
1225
- assert_raises(ValueError, np.histogramdd, x, bins=[1, 0.99, 1, 1])
1226
- assert_raises(
1227
- ValueError, np.histogramdd, x, bins=[1, 1, 1, [1, 2, 2, 3]])
1228
- assert_raises(
1229
- ValueError, np.histogramdd, x, bins=[1, 1, 1, [1, 2, 3, -3]])
1230
- assert_(np.histogramdd(x, bins=[1, 1, 1, [1, 2, 3, 4]]))
1231
-
1232
- def test_inf_edges(self):
1233
- """Test using +/-inf bin edges works. See #1788."""
1234
- with np.errstate(invalid='ignore'):
1235
- x = np.arange(6).reshape(3, 2)
1236
- expected = np.array([[1, 0], [0, 1], [0, 1]])
1237
- h, e = np.histogramdd(x, bins=[3, [-np.inf, 2, 10]])
1238
- assert_allclose(h, expected)
1239
- h, e = np.histogramdd(x, bins=[3, np.array([-1, 2, np.inf])])
1240
- assert_allclose(h, expected)
1241
- h, e = np.histogramdd(x, bins=[3, [-np.inf, 3, np.inf]])
1242
- assert_allclose(h, expected)
1243
-
1244
- def test_rightmost_binedge(self):
1245
- """Test event very close to rightmost binedge.
1246
- See Github issue #4266"""
1247
- x = [0.9999999995]
1248
- bins = [[0.,0.5,1.0]]
1249
- hist, _ = histogramdd(x, bins=bins)
1250
- assert_(hist[0] == 0.0)
1251
- assert_(hist[1] == 1.)
1252
- x = [1.0]
1253
- bins = [[0.,0.5,1.0]]
1254
- hist, _ = histogramdd(x, bins=bins)
1255
- assert_(hist[0] == 0.0)
1256
- assert_(hist[1] == 1.)
1257
- x = [1.0000000001]
1258
- bins = [[0.,0.5,1.0]]
1259
- hist, _ = histogramdd(x, bins=bins)
1260
- assert_(hist[0] == 0.0)
1261
- assert_(hist[1] == 1.)
1262
- x = [1.0001]
1263
- bins = [[0.,0.5,1.0]]
1264
- hist, _ = histogramdd(x, bins=bins)
1265
- assert_(hist[0] == 0.0)
1266
- assert_(hist[1] == 0.0)
1267
-
1268
-
1269
- class TestUnique(TestCase):
1270
- def test_simple(self):
1271
- x = np.array([4, 3, 2, 1, 1, 2, 3, 4, 0])
1272
- assert_(np.all(unique(x) == [0, 1, 2, 3, 4]))
1273
- assert_(unique(np.array([1, 1, 1, 1, 1])) == np.array([1]))
1274
- x = ['widget', 'ham', 'foo', 'bar', 'foo', 'ham']
1275
- assert_(np.all(unique(x) == ['bar', 'foo', 'ham', 'widget']))
1276
- x = np.array([5 + 6j, 1 + 1j, 1 + 10j, 10, 5 + 6j])
1277
- assert_(np.all(unique(x) == [1 + 1j, 1 + 10j, 5 + 6j, 10]))
1278
-
1279
-
1280
- class TestCheckFinite(TestCase):
1281
- def test_simple(self):
1282
- a = [1, 2, 3]
1283
- b = [1, 2, np.inf]
1284
- c = [1, 2, np.nan]
1285
- np.lib.asarray_chkfinite(a)
1286
- assert_raises(ValueError, np.lib.asarray_chkfinite, b)
1287
- assert_raises(ValueError, np.lib.asarray_chkfinite, c)
1288
-
1289
- def test_dtype_order(self):
1290
- """Regression test for missing dtype and order arguments"""
1291
- a = [1, 2, 3]
1292
- a = np.lib.asarray_chkfinite(a, order='F', dtype=np.float64)
1293
- assert_(a.dtype == np.float64)
1294
-
1295
-
1296
- class TestCorrCoef(TestCase):
1297
- A = np.array(
1298
- [[0.15391142, 0.18045767, 0.14197213],
1299
- [0.70461506, 0.96474128, 0.27906989],
1300
- [0.9297531, 0.32296769, 0.19267156]])
1301
- B = np.array(
1302
- [[0.10377691, 0.5417086, 0.49807457],
1303
- [0.82872117, 0.77801674, 0.39226705],
1304
- [0.9314666, 0.66800209, 0.03538394]])
1305
- res1 = np.array(
1306
- [[1., 0.9379533, -0.04931983],
1307
- [0.9379533, 1., 0.30007991],
1308
- [-0.04931983, 0.30007991, 1.]])
1309
- res2 = np.array(
1310
- [[1., 0.9379533, -0.04931983, 0.30151751, 0.66318558, 0.51532523],
1311
- [0.9379533, 1., 0.30007991, -0.04781421, 0.88157256, 0.78052386],
1312
- [-0.04931983, 0.30007991, 1., -0.96717111, 0.71483595, 0.83053601],
1313
- [0.30151751, -0.04781421, -0.96717111, 1., -0.51366032, -0.66173113],
1314
- [0.66318558, 0.88157256, 0.71483595, -0.51366032, 1., 0.98317823],
1315
- [0.51532523, 0.78052386, 0.83053601, -0.66173113, 0.98317823, 1.]])
1316
-
1317
- def test_non_array(self):
1318
- assert_almost_equal(np.corrcoef([0, 1, 0], [1, 0, 1]),
1319
- [[1., -1.], [-1., 1.]])
1320
-
1321
- def test_simple(self):
1322
- assert_almost_equal(corrcoef(self.A), self.res1)
1323
- assert_almost_equal(corrcoef(self.A, self.B), self.res2)
1324
-
1325
- def test_ddof(self):
1326
- assert_almost_equal(corrcoef(self.A, ddof=-1), self.res1)
1327
- assert_almost_equal(corrcoef(self.A, self.B, ddof=-1), self.res2)
1328
-
1329
- def test_complex(self):
1330
- x = np.array([[1, 2, 3], [1j, 2j, 3j]])
1331
- assert_allclose(corrcoef(x), np.array([[1., -1.j], [1.j, 1.]]))
1332
-
1333
- def test_xy(self):
1334
- x = np.array([[1, 2, 3]])
1335
- y = np.array([[1j, 2j, 3j]])
1336
- assert_allclose(np.corrcoef(x, y), np.array([[1., -1.j], [1.j, 1.]]))
1337
-
1338
- def test_empty(self):
1339
- with warnings.catch_warnings(record=True):
1340
- warnings.simplefilter('always', RuntimeWarning)
1341
- assert_array_equal(corrcoef(np.array([])), np.nan)
1342
- assert_array_equal(corrcoef(np.array([]).reshape(0, 2)),
1343
- np.array([]).reshape(0, 0))
1344
- assert_array_equal(corrcoef(np.array([]).reshape(2, 0)),
1345
- np.array([[np.nan, np.nan], [np.nan, np.nan]]))
1346
-
1347
- def test_wrong_ddof(self):
1348
- x = np.array([[0, 2], [1, 1], [2, 0]]).T
1349
- with warnings.catch_warnings(record=True):
1350
- warnings.simplefilter('always', RuntimeWarning)
1351
- assert_array_equal(corrcoef(x, ddof=5),
1352
- np.array([[np.nan, np.nan], [np.nan, np.nan]]))
1353
-
1354
-
1355
- class TestCov(TestCase):
1356
- def test_basic(self):
1357
- x = np.array([[0, 2], [1, 1], [2, 0]]).T
1358
- assert_allclose(cov(x), np.array([[1., -1.], [-1., 1.]]))
1359
-
1360
- def test_complex(self):
1361
- x = np.array([[1, 2, 3], [1j, 2j, 3j]])
1362
- assert_allclose(cov(x), np.array([[1., -1.j], [1.j, 1.]]))
1363
-
1364
- def test_xy(self):
1365
- x = np.array([[1, 2, 3]])
1366
- y = np.array([[1j, 2j, 3j]])
1367
- assert_allclose(cov(x, y), np.array([[1., -1.j], [1.j, 1.]]))
1368
-
1369
- def test_empty(self):
1370
- with warnings.catch_warnings(record=True):
1371
- warnings.simplefilter('always', RuntimeWarning)
1372
- assert_array_equal(cov(np.array([])), np.nan)
1373
- assert_array_equal(cov(np.array([]).reshape(0, 2)),
1374
- np.array([]).reshape(0, 0))
1375
- assert_array_equal(cov(np.array([]).reshape(2, 0)),
1376
- np.array([[np.nan, np.nan], [np.nan, np.nan]]))
1377
-
1378
- def test_wrong_ddof(self):
1379
- x = np.array([[0, 2], [1, 1], [2, 0]]).T
1380
- with warnings.catch_warnings(record=True):
1381
- warnings.simplefilter('always', RuntimeWarning)
1382
- assert_array_equal(cov(x, ddof=5),
1383
- np.array([[np.inf, -np.inf], [-np.inf, np.inf]]))
1384
-
1385
-
1386
- class Test_I0(TestCase):
1387
- def test_simple(self):
1388
- assert_almost_equal(
1389
- i0(0.5),
1390
- np.array(1.0634833707413234))
1391
-
1392
- A = np.array([0.49842636, 0.6969809, 0.22011976, 0.0155549])
1393
- assert_almost_equal(
1394
- i0(A),
1395
- np.array([1.06307822, 1.12518299, 1.01214991, 1.00006049]))
1396
-
1397
- B = np.array([[0.827002, 0.99959078],
1398
- [0.89694769, 0.39298162],
1399
- [0.37954418, 0.05206293],
1400
- [0.36465447, 0.72446427],
1401
- [0.48164949, 0.50324519]])
1402
- assert_almost_equal(
1403
- i0(B),
1404
- np.array([[1.17843223, 1.26583466],
1405
- [1.21147086, 1.03898290],
1406
- [1.03633899, 1.00067775],
1407
- [1.03352052, 1.13557954],
1408
- [1.05884290, 1.06432317]]))
1409
-
1410
-
1411
- class TestKaiser(TestCase):
1412
- def test_simple(self):
1413
- assert_(np.isfinite(kaiser(1, 1.0)))
1414
- assert_almost_equal(kaiser(0, 1.0),
1415
- np.array([]))
1416
- assert_almost_equal(kaiser(2, 1.0),
1417
- np.array([0.78984831, 0.78984831]))
1418
- assert_almost_equal(kaiser(5, 1.0),
1419
- np.array([0.78984831, 0.94503323, 1.,
1420
- 0.94503323, 0.78984831]))
1421
- assert_almost_equal(kaiser(5, 1.56789),
1422
- np.array([0.58285404, 0.88409679, 1.,
1423
- 0.88409679, 0.58285404]))
1424
-
1425
- def test_int_beta(self):
1426
- kaiser(3, 4)
1427
-
1428
-
1429
- class TestMsort(TestCase):
1430
- def test_simple(self):
1431
- A = np.array([[0.44567325, 0.79115165, 0.54900530],
1432
- [0.36844147, 0.37325583, 0.96098397],
1433
- [0.64864341, 0.52929049, 0.39172155]])
1434
- assert_almost_equal(
1435
- msort(A),
1436
- np.array([[0.36844147, 0.37325583, 0.39172155],
1437
- [0.44567325, 0.52929049, 0.54900530],
1438
- [0.64864341, 0.79115165, 0.96098397]]))
1439
-
1440
-
1441
- class TestMeshgrid(TestCase):
1442
- def test_simple(self):
1443
- [X, Y] = meshgrid([1, 2, 3], [4, 5, 6, 7])
1444
- assert_array_equal(X, np.array([[1, 2, 3],
1445
- [1, 2, 3],
1446
- [1, 2, 3],
1447
- [1, 2, 3]]))
1448
- assert_array_equal(Y, np.array([[4, 4, 4],
1449
- [5, 5, 5],
1450
- [6, 6, 6],
1451
- [7, 7, 7]]))
1452
-
1453
- def test_single_input(self):
1454
- [X] = meshgrid([1, 2, 3, 4])
1455
- assert_array_equal(X, np.array([1, 2, 3, 4]))
1456
-
1457
- def test_no_input(self):
1458
- args = []
1459
- assert_array_equal([], meshgrid(*args))
1460
-
1461
- def test_indexing(self):
1462
- x = [1, 2, 3]
1463
- y = [4, 5, 6, 7]
1464
- [X, Y] = meshgrid(x, y, indexing='ij')
1465
- assert_array_equal(X, np.array([[1, 1, 1, 1],
1466
- [2, 2, 2, 2],
1467
- [3, 3, 3, 3]]))
1468
- assert_array_equal(Y, np.array([[4, 5, 6, 7],
1469
- [4, 5, 6, 7],
1470
- [4, 5, 6, 7]]))
1471
-
1472
- # Test expected shapes:
1473
- z = [8, 9]
1474
- assert_(meshgrid(x, y)[0].shape == (4, 3))
1475
- assert_(meshgrid(x, y, indexing='ij')[0].shape == (3, 4))
1476
- assert_(meshgrid(x, y, z)[0].shape == (4, 3, 2))
1477
- assert_(meshgrid(x, y, z, indexing='ij')[0].shape == (3, 4, 2))
1478
-
1479
- assert_raises(ValueError, meshgrid, x, y, indexing='notvalid')
1480
-
1481
- def test_sparse(self):
1482
- [X, Y] = meshgrid([1, 2, 3], [4, 5, 6, 7], sparse=True)
1483
- assert_array_equal(X, np.array([[1, 2, 3]]))
1484
- assert_array_equal(Y, np.array([[4], [5], [6], [7]]))
1485
-
1486
- def test_invalid_arguments(self):
1487
- # Test that meshgrid complains about invalid arguments
1488
- # Regression test for issue #4755:
1489
- # https://github.com/numpy/numpy/issues/4755
1490
- assert_raises(TypeError, meshgrid,
1491
- [1, 2, 3], [4, 5, 6, 7], indices='ij')
1492
-
1493
-
1494
- class TestPiecewise(TestCase):
1495
- def test_simple(self):
1496
- # Condition is single bool list
1497
- x = piecewise([0, 0], [True, False], [1])
1498
- assert_array_equal(x, [1, 0])
1499
-
1500
- # List of conditions: single bool list
1501
- x = piecewise([0, 0], [[True, False]], [1])
1502
- assert_array_equal(x, [1, 0])
1503
-
1504
- # Conditions is single bool array
1505
- x = piecewise([0, 0], np.array([True, False]), [1])
1506
- assert_array_equal(x, [1, 0])
1507
-
1508
- # Condition is single int array
1509
- x = piecewise([0, 0], np.array([1, 0]), [1])
1510
- assert_array_equal(x, [1, 0])
1511
-
1512
- # List of conditions: int array
1513
- x = piecewise([0, 0], [np.array([1, 0])], [1])
1514
- assert_array_equal(x, [1, 0])
1515
-
1516
- x = piecewise([0, 0], [[False, True]], [lambda x:-1])
1517
- assert_array_equal(x, [0, -1])
1518
-
1519
- def test_two_conditions(self):
1520
- x = piecewise([1, 2], [[True, False], [False, True]], [3, 4])
1521
- assert_array_equal(x, [3, 4])
1522
-
1523
- def test_default(self):
1524
- # No value specified for x[1], should be 0
1525
- x = piecewise([1, 2], [True, False], [2])
1526
- assert_array_equal(x, [2, 0])
1527
-
1528
- # Should set x[1] to 3
1529
- x = piecewise([1, 2], [True, False], [2, 3])
1530
- assert_array_equal(x, [2, 3])
1531
-
1532
- def test_0d(self):
1533
- x = np.array(3)
1534
- y = piecewise(x, x > 3, [4, 0])
1535
- assert_(y.ndim == 0)
1536
- assert_(y == 0)
1537
-
1538
- x = 5
1539
- y = piecewise(x, [[True], [False]], [1, 0])
1540
- assert_(y.ndim == 0)
1541
- assert_(y == 1)
1542
-
1543
- def test_0d_comparison(self):
1544
- x = 3
1545
- y = piecewise(x, [x <= 3, x > 3], [4, 0])
1546
-
1547
-
1548
- class TestBincount(TestCase):
1549
- def test_simple(self):
1550
- y = np.bincount(np.arange(4))
1551
- assert_array_equal(y, np.ones(4))
1552
-
1553
- def test_simple2(self):
1554
- y = np.bincount(np.array([1, 5, 2, 4, 1]))
1555
- assert_array_equal(y, np.array([0, 2, 1, 0, 1, 1]))
1556
-
1557
- def test_simple_weight(self):
1558
- x = np.arange(4)
1559
- w = np.array([0.2, 0.3, 0.5, 0.1])
1560
- y = np.bincount(x, w)
1561
- assert_array_equal(y, w)
1562
-
1563
- def test_simple_weight2(self):
1564
- x = np.array([1, 2, 4, 5, 2])
1565
- w = np.array([0.2, 0.3, 0.5, 0.1, 0.2])
1566
- y = np.bincount(x, w)
1567
- assert_array_equal(y, np.array([0, 0.2, 0.5, 0, 0.5, 0.1]))
1568
-
1569
- def test_with_minlength(self):
1570
- x = np.array([0, 1, 0, 1, 1])
1571
- y = np.bincount(x, minlength=3)
1572
- assert_array_equal(y, np.array([2, 3, 0]))
1573
-
1574
- def test_with_minlength_smaller_than_maxvalue(self):
1575
- x = np.array([0, 1, 1, 2, 2, 3, 3])
1576
- y = np.bincount(x, minlength=2)
1577
- assert_array_equal(y, np.array([1, 2, 2, 2]))
1578
-
1579
- def test_with_minlength_and_weights(self):
1580
- x = np.array([1, 2, 4, 5, 2])
1581
- w = np.array([0.2, 0.3, 0.5, 0.1, 0.2])
1582
- y = np.bincount(x, w, 8)
1583
- assert_array_equal(y, np.array([0, 0.2, 0.5, 0, 0.5, 0.1, 0, 0]))
1584
-
1585
- def test_empty(self):
1586
- x = np.array([], dtype=int)
1587
- y = np.bincount(x)
1588
- assert_array_equal(x, y)
1589
-
1590
- def test_empty_with_minlength(self):
1591
- x = np.array([], dtype=int)
1592
- y = np.bincount(x, minlength=5)
1593
- assert_array_equal(y, np.zeros(5, dtype=int))
1594
-
1595
- def test_with_incorrect_minlength(self):
1596
- x = np.array([], dtype=int)
1597
- assert_raises_regex(TypeError, "an integer is required",
1598
- lambda: np.bincount(x, minlength="foobar"))
1599
- assert_raises_regex(ValueError, "must be positive",
1600
- lambda: np.bincount(x, minlength=-1))
1601
- assert_raises_regex(ValueError, "must be positive",
1602
- lambda: np.bincount(x, minlength=0))
1603
-
1604
- x = np.arange(5)
1605
- assert_raises_regex(TypeError, "an integer is required",
1606
- lambda: np.bincount(x, minlength="foobar"))
1607
- assert_raises_regex(ValueError, "minlength must be positive",
1608
- lambda: np.bincount(x, minlength=-1))
1609
- assert_raises_regex(ValueError, "minlength must be positive",
1610
- lambda: np.bincount(x, minlength=0))
1611
-
1612
-
1613
- class TestInterp(TestCase):
1614
- def test_exceptions(self):
1615
- assert_raises(ValueError, interp, 0, [], [])
1616
- assert_raises(ValueError, interp, 0, [0], [1, 2])
1617
-
1618
- def test_basic(self):
1619
- x = np.linspace(0, 1, 5)
1620
- y = np.linspace(0, 1, 5)
1621
- x0 = np.linspace(0, 1, 50)
1622
- assert_almost_equal(np.interp(x0, x, y), x0)
1623
-
1624
- def test_right_left_behavior(self):
1625
- assert_equal(interp([-1, 0, 1], [0], [1]), [1, 1, 1])
1626
- assert_equal(interp([-1, 0, 1], [0], [1], left=0), [0, 1, 1])
1627
- assert_equal(interp([-1, 0, 1], [0], [1], right=0), [1, 1, 0])
1628
- assert_equal(interp([-1, 0, 1], [0], [1], left=0, right=0), [0, 1, 0])
1629
-
1630
- def test_scalar_interpolation_point(self):
1631
- x = np.linspace(0, 1, 5)
1632
- y = np.linspace(0, 1, 5)
1633
- x0 = 0
1634
- assert_almost_equal(np.interp(x0, x, y), x0)
1635
- x0 = .3
1636
- assert_almost_equal(np.interp(x0, x, y), x0)
1637
- x0 = np.float32(.3)
1638
- assert_almost_equal(np.interp(x0, x, y), x0)
1639
- x0 = np.float64(.3)
1640
- assert_almost_equal(np.interp(x0, x, y), x0)
1641
- x0 = np.nan
1642
- assert_almost_equal(np.interp(x0, x, y), x0)
1643
-
1644
- def test_zero_dimensional_interpolation_point(self):
1645
- x = np.linspace(0, 1, 5)
1646
- y = np.linspace(0, 1, 5)
1647
- x0 = np.array(.3)
1648
- assert_almost_equal(np.interp(x0, x, y), x0)
1649
- x0 = np.array(.3, dtype=object)
1650
- assert_almost_equal(np.interp(x0, x, y), .3)
1651
-
1652
- def test_if_len_x_is_small(self):
1653
- xp = np.arange(0, 10, 0.0001)
1654
- fp = np.sin(xp)
1655
- assert_almost_equal(np.interp(np.pi, xp, fp), 0.0)
1656
-
1657
-
1658
- def compare_results(res, desired):
1659
- for i in range(len(desired)):
1660
- assert_array_equal(res[i], desired[i])
1661
-
1662
-
1663
- class TestScoreatpercentile(TestCase):
1664
-
1665
- def test_basic(self):
1666
- x = np.arange(8) * 0.5
1667
- assert_equal(np.percentile(x, 0), 0.)
1668
- assert_equal(np.percentile(x, 100), 3.5)
1669
- assert_equal(np.percentile(x, 50), 1.75)
1670
-
1671
- def test_api(self):
1672
- d = np.ones(5)
1673
- np.percentile(d, 5, None, None, False)
1674
- np.percentile(d, 5, None, None, False, 'linear')
1675
- o = np.ones((1,))
1676
- np.percentile(d, 5, None, o, False, 'linear')
1677
-
1678
- def test_2D(self):
1679
- x = np.array([[1, 1, 1],
1680
- [1, 1, 1],
1681
- [4, 4, 3],
1682
- [1, 1, 1],
1683
- [1, 1, 1]])
1684
- assert_array_equal(np.percentile(x, 50, axis=0), [1, 1, 1])
1685
-
1686
- def test_linear(self):
1687
-
1688
- # Test defaults
1689
- assert_equal(np.percentile(range(10), 50), 4.5)
1690
-
1691
- # explicitly specify interpolation_method 'fraction' (the default)
1692
- assert_equal(np.percentile(range(10), 50,
1693
- interpolation='linear'), 4.5)
1694
-
1695
- def test_lower_higher(self):
1696
-
1697
- # interpolation_method 'lower'/'higher'
1698
- assert_equal(np.percentile(range(10), 50,
1699
- interpolation='lower'), 4)
1700
- assert_equal(np.percentile(range(10), 50,
1701
- interpolation='higher'), 5)
1702
-
1703
- def test_midpoint(self):
1704
- assert_equal(np.percentile(range(10), 51,
1705
- interpolation='midpoint'), 4.5)
1706
-
1707
- def test_nearest(self):
1708
- assert_equal(np.percentile(range(10), 51,
1709
- interpolation='nearest'), 5)
1710
- assert_equal(np.percentile(range(10), 49,
1711
- interpolation='nearest'), 4)
1712
-
1713
- def test_sequence(self):
1714
- x = np.arange(8) * 0.5
1715
- assert_equal(np.percentile(x, [0, 100, 50]), [0, 3.5, 1.75])
1716
-
1717
- def test_axis(self):
1718
- x = np.arange(12).reshape(3, 4)
1719
-
1720
- assert_equal(np.percentile(x, (25, 50, 100)), [2.75, 5.5, 11.0])
1721
-
1722
- r0 = [[2, 3, 4, 5], [4, 5, 6, 7], [8, 9, 10, 11]]
1723
- assert_equal(np.percentile(x, (25, 50, 100), axis=0), r0)
1724
-
1725
- r1 = [[0.75, 1.5, 3], [4.75, 5.5, 7], [8.75, 9.5, 11]]
1726
- assert_equal(np.percentile(x, (25, 50, 100), axis=1), np.array(r1).T)
1727
-
1728
- # ensure qth axis is always first as with np.array(old_percentile(..))
1729
- x = np.arange(3 * 4 * 5 * 6).reshape(3, 4, 5, 6)
1730
- assert_equal(np.percentile(x, (25, 50)).shape, (2,))
1731
- assert_equal(np.percentile(x, (25, 50, 75)).shape, (3,))
1732
- assert_equal(np.percentile(x, (25, 50), axis=0).shape, (2, 4, 5, 6))
1733
- assert_equal(np.percentile(x, (25, 50), axis=1).shape, (2, 3, 5, 6))
1734
- assert_equal(np.percentile(x, (25, 50), axis=2).shape, (2, 3, 4, 6))
1735
- assert_equal(np.percentile(x, (25, 50), axis=3).shape, (2, 3, 4, 5))
1736
- assert_equal(np.percentile(x, (25, 50, 75), axis=1).shape, (3, 3, 5, 6))
1737
- assert_equal(np.percentile(x, (25, 50),
1738
- interpolation="higher").shape, (2,))
1739
- assert_equal(np.percentile(x, (25, 50, 75),
1740
- interpolation="higher").shape, (3,))
1741
- assert_equal(np.percentile(x, (25, 50), axis=0,
1742
- interpolation="higher").shape, (2, 4, 5, 6))
1743
- assert_equal(np.percentile(x, (25, 50), axis=1,
1744
- interpolation="higher").shape, (2, 3, 5, 6))
1745
- assert_equal(np.percentile(x, (25, 50), axis=2,
1746
- interpolation="higher").shape, (2, 3, 4, 6))
1747
- assert_equal(np.percentile(x, (25, 50), axis=3,
1748
- interpolation="higher").shape, (2, 3, 4, 5))
1749
- assert_equal(np.percentile(x, (25, 50, 75), axis=1,
1750
- interpolation="higher").shape, (3, 3, 5, 6))
1751
-
1752
- def test_scalar_q(self):
1753
- # test for no empty dimensions for compatiblity with old percentile
1754
- x = np.arange(12).reshape(3, 4)
1755
- assert_equal(np.percentile(x, 50), 5.5)
1756
- self.assertTrue(np.isscalar(np.percentile(x, 50)))
1757
- r0 = np.array([ 4., 5., 6., 7.])
1758
- assert_equal(np.percentile(x, 50, axis=0), r0)
1759
- assert_equal(np.percentile(x, 50, axis=0).shape, r0.shape)
1760
- r1 = np.array([ 1.5, 5.5, 9.5])
1761
- assert_almost_equal(np.percentile(x, 50, axis=1), r1)
1762
- assert_equal(np.percentile(x, 50, axis=1).shape, r1.shape)
1763
-
1764
- out = np.empty(1)
1765
- assert_equal(np.percentile(x, 50, out=out), 5.5)
1766
- assert_equal(out, 5.5)
1767
- out = np.empty(4)
1768
- assert_equal(np.percentile(x, 50, axis=0, out=out), r0)
1769
- assert_equal(out, r0)
1770
- out = np.empty(3)
1771
- assert_equal(np.percentile(x, 50, axis=1, out=out), r1)
1772
- assert_equal(out, r1)
1773
-
1774
- # test for no empty dimensions for compatiblity with old percentile
1775
- x = np.arange(12).reshape(3, 4)
1776
- assert_equal(np.percentile(x, 50, interpolation='lower'), 5.)
1777
- self.assertTrue(np.isscalar(np.percentile(x, 50)))
1778
- r0 = np.array([ 4., 5., 6., 7.])
1779
- c0 = np.percentile(x, 50, interpolation='lower', axis=0)
1780
- assert_equal(c0, r0)
1781
- assert_equal(c0.shape, r0.shape)
1782
- r1 = np.array([ 1., 5., 9.])
1783
- c1 = np.percentile(x, 50, interpolation='lower', axis=1)
1784
- assert_almost_equal(c1, r1)
1785
- assert_equal(c1.shape, r1.shape)
1786
-
1787
- out = np.empty((), dtype=x.dtype)
1788
- c = np.percentile(x, 50, interpolation='lower', out=out)
1789
- assert_equal(c, 5)
1790
- assert_equal(out, 5)
1791
- out = np.empty(4, dtype=x.dtype)
1792
- c = np.percentile(x, 50, interpolation='lower', axis=0, out=out)
1793
- assert_equal(c, r0)
1794
- assert_equal(out, r0)
1795
- out = np.empty(3, dtype=x.dtype)
1796
- c = np.percentile(x, 50, interpolation='lower', axis=1, out=out)
1797
- assert_equal(c, r1)
1798
- assert_equal(out, r1)
1799
-
1800
- def test_exception(self):
1801
- assert_raises(ValueError, np.percentile, [1, 2], 56,
1802
- interpolation='foobar')
1803
- assert_raises(ValueError, np.percentile, [1], 101)
1804
- assert_raises(ValueError, np.percentile, [1], -1)
1805
- assert_raises(ValueError, np.percentile, [1], list(range(50)) + [101])
1806
- assert_raises(ValueError, np.percentile, [1], list(range(50)) + [-0.1])
1807
-
1808
- def test_percentile_list(self):
1809
- assert_equal(np.percentile([1, 2, 3], 0), 1)
1810
-
1811
- def test_percentile_out(self):
1812
- x = np.array([1, 2, 3])
1813
- y = np.zeros((3,))
1814
- p = (1, 2, 3)
1815
- np.percentile(x, p, out=y)
1816
- assert_equal(y, np.percentile(x, p))
1817
-
1818
- x = np.array([[1, 2, 3],
1819
- [4, 5, 6]])
1820
-
1821
- y = np.zeros((3, 3))
1822
- np.percentile(x, p, axis=0, out=y)
1823
- assert_equal(y, np.percentile(x, p, axis=0))
1824
-
1825
- y = np.zeros((3, 2))
1826
- np.percentile(x, p, axis=1, out=y)
1827
- assert_equal(y, np.percentile(x, p, axis=1))
1828
-
1829
- x = np.arange(12).reshape(3, 4)
1830
- # q.dim > 1, float
1831
- r0 = np.array([[2., 3., 4., 5.], [4., 5., 6., 7.]])
1832
- out = np.empty((2, 4))
1833
- assert_equal(np.percentile(x, (25, 50), axis=0, out=out), r0)
1834
- assert_equal(out, r0)
1835
- r1 = np.array([[0.75, 4.75, 8.75], [1.5, 5.5, 9.5]])
1836
- out = np.empty((2, 3))
1837
- assert_equal(np.percentile(x, (25, 50), axis=1, out=out), r1)
1838
- assert_equal(out, r1)
1839
-
1840
- # q.dim > 1, int
1841
- r0 = np.array([[0, 1, 2, 3], [4, 5, 6, 7]])
1842
- out = np.empty((2, 4), dtype=x.dtype)
1843
- c = np.percentile(x, (25, 50), interpolation='lower', axis=0, out=out)
1844
- assert_equal(c, r0)
1845
- assert_equal(out, r0)
1846
- r1 = np.array([[0, 4, 8], [1, 5, 9]])
1847
- out = np.empty((2, 3), dtype=x.dtype)
1848
- c = np.percentile(x, (25, 50), interpolation='lower', axis=1, out=out)
1849
- assert_equal(c, r1)
1850
- assert_equal(out, r1)
1851
-
1852
- def test_percentile_empty_dim(self):
1853
- # empty dims are preserved
1854
- d = np.arange(11*2).reshape(11, 1, 2, 1)
1855
- assert_array_equal(np.percentile(d, 50, axis=0).shape, (1, 2, 1))
1856
- assert_array_equal(np.percentile(d, 50, axis=1).shape, (11, 2, 1))
1857
- assert_array_equal(np.percentile(d, 50, axis=2).shape, (11, 1, 1))
1858
- assert_array_equal(np.percentile(d, 50, axis=3).shape, (11, 1, 2))
1859
- assert_array_equal(np.percentile(d, 50, axis=-1).shape, (11, 1, 2))
1860
- assert_array_equal(np.percentile(d, 50, axis=-2).shape, (11, 1, 1))
1861
- assert_array_equal(np.percentile(d, 50, axis=-3).shape, (11, 2, 1))
1862
- assert_array_equal(np.percentile(d, 50, axis=-4).shape, (1, 2, 1))
1863
-
1864
- assert_array_equal(np.percentile(d, 50, axis=2,
1865
- interpolation='midpoint').shape,
1866
- (11, 1, 1))
1867
- assert_array_equal(np.percentile(d, 50, axis=-2,
1868
- interpolation='midpoint').shape,
1869
- (11, 1, 1))
1870
-
1871
- assert_array_equal(np.array(np.percentile(d, [10, 50], axis=0)).shape,
1872
- (2, 1, 2, 1))
1873
- assert_array_equal(np.array(np.percentile(d, [10, 50], axis=1)).shape,
1874
- (2, 11, 2, 1))
1875
- assert_array_equal(np.array(np.percentile(d, [10, 50], axis=2)).shape,
1876
- (2, 11, 1, 1))
1877
- assert_array_equal(np.array(np.percentile(d, [10, 50], axis=3)).shape,
1878
- (2, 11, 1, 2))
1879
-
1880
-
1881
- def test_percentile_no_overwrite(self):
1882
- a = np.array([2, 3, 4, 1])
1883
- np.percentile(a, [50], overwrite_input=False)
1884
- assert_equal(a, np.array([2, 3, 4, 1]))
1885
-
1886
- a = np.array([2, 3, 4, 1])
1887
- np.percentile(a, [50])
1888
- assert_equal(a, np.array([2, 3, 4, 1]))
1889
-
1890
- def test_no_p_overwrite(self):
1891
- p = np.linspace(0., 100., num=5)
1892
- np.percentile(np.arange(100.), p, interpolation="midpoint")
1893
- assert_array_equal(p, np.linspace(0., 100., num=5))
1894
- p = np.linspace(0., 100., num=5).tolist()
1895
- np.percentile(np.arange(100.), p, interpolation="midpoint")
1896
- assert_array_equal(p, np.linspace(0., 100., num=5).tolist())
1897
-
1898
- def test_percentile_overwrite(self):
1899
- a = np.array([2, 3, 4, 1])
1900
- b = np.percentile(a, [50], overwrite_input=True)
1901
- assert_equal(b, np.array([2.5]))
1902
-
1903
- b = np.percentile([2, 3, 4, 1], [50], overwrite_input=True)
1904
- assert_equal(b, np.array([2.5]))
1905
-
1906
- def test_extended_axis(self):
1907
- o = np.random.normal(size=(71, 23))
1908
- x = np.dstack([o] * 10)
1909
- assert_equal(np.percentile(x, 30, axis=(0, 1)), np.percentile(o, 30))
1910
- x = np.rollaxis(x, -1, 0)
1911
- assert_equal(np.percentile(x, 30, axis=(-2, -1)), np.percentile(o, 30))
1912
- x = x.swapaxes(0, 1).copy()
1913
- assert_equal(np.percentile(x, 30, axis=(0, -1)), np.percentile(o, 30))
1914
- x = x.swapaxes(0, 1).copy()
1915
-
1916
- assert_equal(np.percentile(x, [25, 60], axis=(0, 1, 2)),
1917
- np.percentile(x, [25, 60], axis=None))
1918
- assert_equal(np.percentile(x, [25, 60], axis=(0,)),
1919
- np.percentile(x, [25, 60], axis=0))
1920
-
1921
- d = np.arange(3 * 5 * 7 * 11).reshape(3, 5, 7, 11)
1922
- np.random.shuffle(d)
1923
- assert_equal(np.percentile(d, 25, axis=(0, 1, 2))[0],
1924
- np.percentile(d[:, :, :, 0].flatten(), 25))
1925
- assert_equal(np.percentile(d, [10, 90], axis=(0, 1, 3))[:, 1],
1926
- np.percentile(d[:, :, 1, :].flatten(), [10, 90]))
1927
- assert_equal(np.percentile(d, 25, axis=(3, 1, -4))[2],
1928
- np.percentile(d[:, :, 2, :].flatten(), 25))
1929
- assert_equal(np.percentile(d, 25, axis=(3, 1, 2))[2],
1930
- np.percentile(d[2, :, :, :].flatten(), 25))
1931
- assert_equal(np.percentile(d, 25, axis=(3, 2))[2, 1],
1932
- np.percentile(d[2, 1, :, :].flatten(), 25))
1933
- assert_equal(np.percentile(d, 25, axis=(1, -2))[2, 1],
1934
- np.percentile(d[2, :, :, 1].flatten(), 25))
1935
- assert_equal(np.percentile(d, 25, axis=(1, 3))[2, 2],
1936
- np.percentile(d[2, :, 2, :].flatten(), 25))
1937
-
1938
- def test_extended_axis_invalid(self):
1939
- d = np.ones((3, 5, 7, 11))
1940
- assert_raises(IndexError, np.percentile, d, axis=-5, q=25)
1941
- assert_raises(IndexError, np.percentile, d, axis=(0, -5), q=25)
1942
- assert_raises(IndexError, np.percentile, d, axis=4, q=25)
1943
- assert_raises(IndexError, np.percentile, d, axis=(0, 4), q=25)
1944
- assert_raises(ValueError, np.percentile, d, axis=(1, 1), q=25)
1945
-
1946
- def test_keepdims(self):
1947
- d = np.ones((3, 5, 7, 11))
1948
- assert_equal(np.percentile(d, 7, axis=None, keepdims=True).shape,
1949
- (1, 1, 1, 1))
1950
- assert_equal(np.percentile(d, 7, axis=(0, 1), keepdims=True).shape,
1951
- (1, 1, 7, 11))
1952
- assert_equal(np.percentile(d, 7, axis=(0, 3), keepdims=True).shape,
1953
- (1, 5, 7, 1))
1954
- assert_equal(np.percentile(d, 7, axis=(1,), keepdims=True).shape,
1955
- (3, 1, 7, 11))
1956
- assert_equal(np.percentile(d, 7, (0, 1, 2, 3), keepdims=True).shape,
1957
- (1, 1, 1, 1))
1958
- assert_equal(np.percentile(d, 7, axis=(0, 1, 3), keepdims=True).shape,
1959
- (1, 1, 7, 1))
1960
-
1961
- assert_equal(np.percentile(d, [1, 7], axis=(0, 1, 3),
1962
- keepdims=True).shape, (2, 1, 1, 7, 1))
1963
- assert_equal(np.percentile(d, [1, 7], axis=(0, 3),
1964
- keepdims=True).shape, (2, 1, 5, 7, 1))
1965
-
1966
-
1967
- class TestMedian(TestCase):
1968
- def test_basic(self):
1969
- a0 = np.array(1)
1970
- a1 = np.arange(2)
1971
- a2 = np.arange(6).reshape(2, 3)
1972
- assert_equal(np.median(a0), 1)
1973
- assert_allclose(np.median(a1), 0.5)
1974
- assert_allclose(np.median(a2), 2.5)
1975
- assert_allclose(np.median(a2, axis=0), [1.5, 2.5, 3.5])
1976
- assert_equal(np.median(a2, axis=1), [1, 4])
1977
- assert_allclose(np.median(a2, axis=None), 2.5)
1978
-
1979
- a = np.array([0.0444502, 0.0463301, 0.141249, 0.0606775])
1980
- assert_almost_equal((a[1] + a[3]) / 2., np.median(a))
1981
- a = np.array([0.0463301, 0.0444502, 0.141249])
1982
- assert_equal(a[0], np.median(a))
1983
- a = np.array([0.0444502, 0.141249, 0.0463301])
1984
- assert_equal(a[-1], np.median(a))
1985
- # check array scalar result
1986
- assert_equal(np.median(a).ndim, 0)
1987
- a[1] = np.nan
1988
- assert_equal(np.median(a).ndim, 0)
1989
-
1990
- def test_axis_keyword(self):
1991
- a3 = np.array([[2, 3],
1992
- [0, 1],
1993
- [6, 7],
1994
- [4, 5]])
1995
- for a in [a3, np.random.randint(0, 100, size=(2, 3, 4))]:
1996
- orig = a.copy()
1997
- np.median(a, axis=None)
1998
- for ax in range(a.ndim):
1999
- np.median(a, axis=ax)
2000
- assert_array_equal(a, orig)
2001
-
2002
- assert_allclose(np.median(a3, axis=0), [3, 4])
2003
- assert_allclose(np.median(a3.T, axis=1), [3, 4])
2004
- assert_allclose(np.median(a3), 3.5)
2005
- assert_allclose(np.median(a3, axis=None), 3.5)
2006
- assert_allclose(np.median(a3.T), 3.5)
2007
-
2008
- def test_overwrite_keyword(self):
2009
- a3 = np.array([[2, 3],
2010
- [0, 1],
2011
- [6, 7],
2012
- [4, 5]])
2013
- a0 = np.array(1)
2014
- a1 = np.arange(2)
2015
- a2 = np.arange(6).reshape(2, 3)
2016
- assert_allclose(np.median(a0.copy(), overwrite_input=True), 1)
2017
- assert_allclose(np.median(a1.copy(), overwrite_input=True), 0.5)
2018
- assert_allclose(np.median(a2.copy(), overwrite_input=True), 2.5)
2019
- assert_allclose(np.median(a2.copy(), overwrite_input=True, axis=0),
2020
- [1.5, 2.5, 3.5])
2021
- assert_allclose(
2022
- np.median(a2.copy(), overwrite_input=True, axis=1), [1, 4])
2023
- assert_allclose(
2024
- np.median(a2.copy(), overwrite_input=True, axis=None), 2.5)
2025
- assert_allclose(
2026
- np.median(a3.copy(), overwrite_input=True, axis=0), [3, 4])
2027
- assert_allclose(np.median(a3.T.copy(), overwrite_input=True, axis=1),
2028
- [3, 4])
2029
-
2030
- a4 = np.arange(3 * 4 * 5, dtype=np.float32).reshape((3, 4, 5))
2031
- map(np.random.shuffle, a4)
2032
- assert_allclose(np.median(a4, axis=None),
2033
- np.median(a4.copy(), axis=None, overwrite_input=True))
2034
- assert_allclose(np.median(a4, axis=0),
2035
- np.median(a4.copy(), axis=0, overwrite_input=True))
2036
- assert_allclose(np.median(a4, axis=1),
2037
- np.median(a4.copy(), axis=1, overwrite_input=True))
2038
- assert_allclose(np.median(a4, axis=2),
2039
- np.median(a4.copy(), axis=2, overwrite_input=True))
2040
-
2041
- def test_array_like(self):
2042
- x = [1, 2, 3]
2043
- assert_almost_equal(np.median(x), 2)
2044
- x2 = [x]
2045
- assert_almost_equal(np.median(x2), 2)
2046
- assert_allclose(np.median(x2, axis=0), x)
2047
-
2048
- def test_subclass(self):
2049
- # gh-3846
2050
- class MySubClass(np.ndarray):
2051
- def __new__(cls, input_array, info=None):
2052
- obj = np.asarray(input_array).view(cls)
2053
- obj.info = info
2054
- return obj
2055
-
2056
- def mean(self, axis=None, dtype=None, out=None):
2057
- return -7
2058
-
2059
- a = MySubClass([1,2,3])
2060
- assert_equal(np.median(a), -7)
2061
-
2062
- def test_object(self):
2063
- o = np.arange(7.);
2064
- assert_(type(np.median(o.astype(object))), float)
2065
- o[2] = np.nan
2066
- assert_(type(np.median(o.astype(object))), float)
2067
-
2068
- def test_extended_axis(self):
2069
- o = np.random.normal(size=(71, 23))
2070
- x = np.dstack([o] * 10)
2071
- assert_equal(np.median(x, axis=(0, 1)), np.median(o))
2072
- x = np.rollaxis(x, -1, 0)
2073
- assert_equal(np.median(x, axis=(-2, -1)), np.median(o))
2074
- x = x.swapaxes(0, 1).copy()
2075
- assert_equal(np.median(x, axis=(0, -1)), np.median(o))
2076
-
2077
- assert_equal(np.median(x, axis=(0, 1, 2)), np.median(x, axis=None))
2078
- assert_equal(np.median(x, axis=(0, )), np.median(x, axis=0))
2079
- assert_equal(np.median(x, axis=(-1, )), np.median(x, axis=-1))
2080
-
2081
- d = np.arange(3 * 5 * 7 * 11).reshape(3, 5, 7, 11)
2082
- np.random.shuffle(d)
2083
- assert_equal(np.median(d, axis=(0, 1, 2))[0],
2084
- np.median(d[:, :, :, 0].flatten()))
2085
- assert_equal(np.median(d, axis=(0, 1, 3))[1],
2086
- np.median(d[:, :, 1, :].flatten()))
2087
- assert_equal(np.median(d, axis=(3, 1, -4))[2],
2088
- np.median(d[:, :, 2, :].flatten()))
2089
- assert_equal(np.median(d, axis=(3, 1, 2))[2],
2090
- np.median(d[2, :, :, :].flatten()))
2091
- assert_equal(np.median(d, axis=(3, 2))[2, 1],
2092
- np.median(d[2, 1, :, :].flatten()))
2093
- assert_equal(np.median(d, axis=(1, -2))[2, 1],
2094
- np.median(d[2, :, :, 1].flatten()))
2095
- assert_equal(np.median(d, axis=(1, 3))[2, 2],
2096
- np.median(d[2, :, 2, :].flatten()))
2097
-
2098
- def test_extended_axis_invalid(self):
2099
- d = np.ones((3, 5, 7, 11))
2100
- assert_raises(IndexError, np.median, d, axis=-5)
2101
- assert_raises(IndexError, np.median, d, axis=(0, -5))
2102
- assert_raises(IndexError, np.median, d, axis=4)
2103
- assert_raises(IndexError, np.median, d, axis=(0, 4))
2104
- assert_raises(ValueError, np.median, d, axis=(1, 1))
2105
-
2106
- def test_keepdims(self):
2107
- d = np.ones((3, 5, 7, 11))
2108
- assert_equal(np.median(d, axis=None, keepdims=True).shape,
2109
- (1, 1, 1, 1))
2110
- assert_equal(np.median(d, axis=(0, 1), keepdims=True).shape,
2111
- (1, 1, 7, 11))
2112
- assert_equal(np.median(d, axis=(0, 3), keepdims=True).shape,
2113
- (1, 5, 7, 1))
2114
- assert_equal(np.median(d, axis=(1,), keepdims=True).shape,
2115
- (3, 1, 7, 11))
2116
- assert_equal(np.median(d, axis=(0, 1, 2, 3), keepdims=True).shape,
2117
- (1, 1, 1, 1))
2118
- assert_equal(np.median(d, axis=(0, 1, 3), keepdims=True).shape,
2119
- (1, 1, 7, 1))
2120
-
2121
-
2122
-
2123
- class TestAdd_newdoc_ufunc(TestCase):
2124
-
2125
- def test_ufunc_arg(self):
2126
- assert_raises(TypeError, add_newdoc_ufunc, 2, "blah")
2127
- assert_raises(ValueError, add_newdoc_ufunc, np.add, "blah")
2128
-
2129
- def test_string_arg(self):
2130
- assert_raises(TypeError, add_newdoc_ufunc, np.add, 3)
2131
-
2132
-
2133
- class TestAdd_newdoc(TestCase):
2134
-
2135
- @dec.skipif(sys.flags.optimize == 2)
2136
- def test_add_doc(self):
2137
- # test np.add_newdoc
2138
- tgt = "Current flat index into the array."
2139
- self.assertEqual(np.core.flatiter.index.__doc__[:len(tgt)], tgt)
2140
- self.assertTrue(len(np.core.ufunc.identity.__doc__) > 300)
2141
- self.assertTrue(len(np.lib.index_tricks.mgrid.__doc__) > 300)
2142
-
2143
-
2144
- if __name__ == "__main__":
2145
- run_module_suite()