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
@@ -0,0 +1,2177 @@
1
+ from __future__ import division, absolute_import, print_function
2
+
3
+ import copy
4
+ import pickle
5
+ import sys
6
+ import platform
7
+ import gc
8
+ import warnings
9
+ import tempfile
10
+ from os import path
11
+ from io import BytesIO
12
+ from itertools import chain
13
+
14
+ import numpy as np
15
+ from numpy.testing import (
16
+ run_module_suite, TestCase, assert_, assert_equal,
17
+ assert_almost_equal, assert_array_equal, assert_array_almost_equal,
18
+ assert_raises, assert_warns, dec
19
+ )
20
+ from numpy.testing.utils import _assert_valid_refcount
21
+ from numpy.compat import asbytes, asunicode, asbytes_nested, long, sixu
22
+
23
+ rlevel = 1
24
+
25
+ class TestRegression(TestCase):
26
+ def test_invalid_round(self,level=rlevel):
27
+ # Ticket #3
28
+ v = 4.7599999999999998
29
+ assert_array_equal(np.array([v]), np.array(v))
30
+
31
+ def test_mem_empty(self,level=rlevel):
32
+ # Ticket #7
33
+ np.empty((1,), dtype=[('x', np.int64)])
34
+
35
+ def test_pickle_transposed(self,level=rlevel):
36
+ # Ticket #16
37
+ a = np.transpose(np.array([[2, 9], [7, 0], [3, 8]]))
38
+ f = BytesIO()
39
+ pickle.dump(a, f)
40
+ f.seek(0)
41
+ b = pickle.load(f)
42
+ f.close()
43
+ assert_array_equal(a, b)
44
+
45
+ def test_typeNA(self,level=rlevel):
46
+ # Ticket #31
47
+ assert_equal(np.typeNA[np.int64], 'Int64')
48
+ assert_equal(np.typeNA[np.uint64], 'UInt64')
49
+
50
+ def test_dtype_names(self,level=rlevel):
51
+ # Ticket #35
52
+ # Should succeed
53
+ np.dtype([(('name', 'label'), np.int32, 3)])
54
+
55
+ def test_reduce(self,level=rlevel):
56
+ # Ticket #40
57
+ assert_almost_equal(np.add.reduce([1., .5], dtype=None), 1.5)
58
+
59
+ def test_zeros_order(self,level=rlevel):
60
+ # Ticket #43
61
+ np.zeros([3], int, 'C')
62
+ np.zeros([3], order='C')
63
+ np.zeros([3], int, order='C')
64
+
65
+ def test_asarray_with_order(self,level=rlevel):
66
+ # Check that nothing is done when order='F' and array C/F-contiguous
67
+ a = np.ones(2)
68
+ assert_(a is np.asarray(a, order='F'))
69
+
70
+ def test_ravel_with_order(self,level=rlevel):
71
+ # Check that ravel works when order='F' and array C/F-contiguous
72
+ a = np.ones(2)
73
+ assert_(not a.ravel('F').flags.owndata)
74
+
75
+ def test_sort_bigendian(self,level=rlevel):
76
+ # Ticket #47
77
+ a = np.linspace(0, 10, 11)
78
+ c = a.astype(np.dtype('<f8'))
79
+ c.sort()
80
+ assert_array_almost_equal(c, a)
81
+
82
+ def test_negative_nd_indexing(self,level=rlevel):
83
+ # Ticket #49
84
+ c = np.arange(125).reshape((5, 5, 5))
85
+ origidx = np.array([-1, 0, 1])
86
+ idx = np.array(origidx)
87
+ c[idx]
88
+ assert_array_equal(idx, origidx)
89
+
90
+ def test_char_dump(self,level=rlevel):
91
+ # Ticket #50
92
+ f = BytesIO()
93
+ ca = np.char.array(np.arange(1000, 1010), itemsize=4)
94
+ ca.dump(f)
95
+ f.seek(0)
96
+ ca = np.load(f)
97
+ f.close()
98
+
99
+ def test_noncontiguous_fill(self,level=rlevel):
100
+ # Ticket #58.
101
+ a = np.zeros((5, 3))
102
+ b = a[:, :2,]
103
+
104
+ def rs():
105
+ b.shape = (10,)
106
+
107
+ self.assertRaises(AttributeError, rs)
108
+
109
+ def test_bool(self,level=rlevel):
110
+ # Ticket #60
111
+ np.bool_(1) # Should succeed
112
+
113
+ def test_indexing1(self,level=rlevel):
114
+ # Ticket #64
115
+ descr = [('x', [('y', [('z', 'c16', (2,)),]),]),]
116
+ buffer = ((([6j, 4j],),),)
117
+ h = np.array(buffer, dtype=descr)
118
+ h['x']['y']['z']
119
+
120
+ def test_indexing2(self,level=rlevel):
121
+ # Ticket #65
122
+ descr = [('x', 'i4', (2,))]
123
+ buffer = ([3, 2],)
124
+ h = np.array(buffer, dtype=descr)
125
+ h['x']
126
+
127
+ def test_round(self,level=rlevel):
128
+ # Ticket #67
129
+ x = np.array([1+2j])
130
+ assert_almost_equal(x**(-1), [1/(1+2j)])
131
+
132
+ def test_scalar_compare(self,level=rlevel):
133
+ # Trac Ticket #72
134
+ # https://github.com/numpy/numpy/issues/565
135
+ a = np.array(['test', 'auto'])
136
+ assert_array_equal(a == 'auto', np.array([False, True]))
137
+ self.assertTrue(a[1] == 'auto')
138
+ self.assertTrue(a[0] != 'auto')
139
+ b = np.linspace(0, 10, 11)
140
+ # This should return true for now, but will eventually raise an error:
141
+ with warnings.catch_warnings():
142
+ warnings.filterwarnings("ignore", category=DeprecationWarning)
143
+ self.assertTrue(b != 'auto')
144
+ self.assertTrue(b[0] != 'auto')
145
+
146
+ def test_unicode_swapping(self,level=rlevel):
147
+ # Ticket #79
148
+ ulen = 1
149
+ ucs_value = sixu('\U0010FFFF')
150
+ ua = np.array([[[ucs_value*ulen]*2]*3]*4, dtype='U%s' % ulen)
151
+ ua.newbyteorder() # Should succeed.
152
+
153
+ def test_object_array_fill(self,level=rlevel):
154
+ # Ticket #86
155
+ x = np.zeros(1, 'O')
156
+ x.fill([])
157
+
158
+ def test_mem_dtype_align(self,level=rlevel):
159
+ # Ticket #93
160
+ self.assertRaises(TypeError, np.dtype,
161
+ {'names':['a'],'formats':['foo']}, align=1)
162
+
163
+ @dec.knownfailureif((sys.version_info[0] >= 3) or
164
+ (sys.platform == "win32" and
165
+ platform.architecture()[0] == "64bit"),
166
+ "numpy.intp('0xff', 16) not supported on Py3, "
167
+ "as it does not inherit from Python int")
168
+ def test_intp(self,level=rlevel):
169
+ # Ticket #99
170
+ i_width = np.int_(0).nbytes*2 - 1
171
+ np.intp('0x' + 'f'*i_width, 16)
172
+ self.assertRaises(OverflowError, np.intp, '0x' + 'f'*(i_width+1), 16)
173
+ self.assertRaises(ValueError, np.intp, '0x1', 32)
174
+ assert_equal(255, np.intp('0xFF', 16))
175
+ assert_equal(1024, np.intp(1024))
176
+
177
+ def test_endian_bool_indexing(self,level=rlevel):
178
+ # Ticket #105
179
+ a = np.arange(10., dtype='>f8')
180
+ b = np.arange(10., dtype='<f8')
181
+ xa = np.where((a > 2) & (a < 6))
182
+ xb = np.where((b > 2) & (b < 6))
183
+ ya = ((a > 2) & (a < 6))
184
+ yb = ((b > 2) & (b < 6))
185
+ assert_array_almost_equal(xa, ya.nonzero())
186
+ assert_array_almost_equal(xb, yb.nonzero())
187
+ assert_(np.all(a[ya] > 0.5))
188
+ assert_(np.all(b[yb] > 0.5))
189
+
190
+ def test_endian_where(self,level=rlevel):
191
+ # GitHub issue #369
192
+ net = np.zeros(3, dtype='>f4')
193
+ net[1] = 0.00458849
194
+ net[2] = 0.605202
195
+ max_net = net.max()
196
+ test = np.where(net <= 0., max_net, net)
197
+ correct = np.array([ 0.60520202, 0.00458849, 0.60520202])
198
+ assert_array_almost_equal(test, correct)
199
+
200
+ def test_endian_recarray(self,level=rlevel):
201
+ # Ticket #2185
202
+ dt = np.dtype([
203
+ ('head', '>u4'),
204
+ ('data', '>u4', 2),
205
+ ])
206
+ buf = np.recarray(1, dtype=dt)
207
+ buf[0]['head'] = 1
208
+ buf[0]['data'][:] = [1, 1]
209
+
210
+ h = buf[0]['head']
211
+ d = buf[0]['data'][0]
212
+ buf[0]['head'] = h
213
+ buf[0]['data'][0] = d
214
+ assert_(buf[0]['head'] == 1)
215
+
216
+ def test_mem_dot(self,level=rlevel):
217
+ # Ticket #106
218
+ x = np.random.randn(0, 1)
219
+ y = np.random.randn(10, 1)
220
+ # Dummy array to detect bad memory access:
221
+ _z = np.ones(10)
222
+ _dummy = np.empty((0, 10))
223
+ z = np.lib.stride_tricks.as_strided(_z, _dummy.shape, _dummy.strides)
224
+ np.dot(x, np.transpose(y), out=z)
225
+ assert_equal(_z, np.ones(10))
226
+ # Do the same for the built-in dot:
227
+ np.core.multiarray.dot(x, np.transpose(y), out=z)
228
+ assert_equal(_z, np.ones(10))
229
+
230
+ def test_arange_endian(self,level=rlevel):
231
+ # Ticket #111
232
+ ref = np.arange(10)
233
+ x = np.arange(10, dtype='<f8')
234
+ assert_array_equal(ref, x)
235
+ x = np.arange(10, dtype='>f8')
236
+ assert_array_equal(ref, x)
237
+
238
+ def test_argmax(self,level=rlevel):
239
+ # Ticket #119
240
+ a = np.random.normal(0, 1, (4, 5, 6, 7, 8))
241
+ for i in range(a.ndim):
242
+ a.argmax(i) # Should succeed
243
+
244
+ def test_mem_divmod(self,level=rlevel):
245
+ # Ticket #126
246
+ for i in range(10):
247
+ divmod(np.array([i])[0], 10)
248
+
249
+ def test_hstack_invalid_dims(self,level=rlevel):
250
+ # Ticket #128
251
+ x = np.arange(9).reshape((3, 3))
252
+ y = np.array([0, 0, 0])
253
+ self.assertRaises(ValueError, np.hstack, (x, y))
254
+
255
+ def test_squeeze_type(self,level=rlevel):
256
+ # Ticket #133
257
+ a = np.array([3])
258
+ b = np.array(3)
259
+ assert_(type(a.squeeze()) is np.ndarray)
260
+ assert_(type(b.squeeze()) is np.ndarray)
261
+
262
+ def test_add_identity(self,level=rlevel):
263
+ # Ticket #143
264
+ assert_equal(0, np.add.identity)
265
+
266
+ def test_numpy_float_python_long_addition(self):
267
+ # Check that numpy float and python longs can be added correctly.
268
+ a = np.float_(23.) + 2**135
269
+ assert_equal(a, 23. + 2**135)
270
+
271
+ def test_binary_repr_0(self,level=rlevel):
272
+ # Ticket #151
273
+ assert_equal('0', np.binary_repr(0))
274
+
275
+ def test_rec_iterate(self,level=rlevel):
276
+ # Ticket #160
277
+ descr = np.dtype([('i', int), ('f', float), ('s', '|S3')])
278
+ x = np.rec.array([(1, 1.1, '1.0'),
279
+ (2, 2.2, '2.0')], dtype=descr)
280
+ x[0].tolist()
281
+ [i for i in x[0]]
282
+
283
+ def test_unicode_string_comparison(self,level=rlevel):
284
+ # Ticket #190
285
+ a = np.array('hello', np.unicode_)
286
+ b = np.array('world')
287
+ a == b
288
+
289
+ def test_tobytes_FORTRANORDER_discontiguous(self,level=rlevel):
290
+ # Fix in r2836
291
+ # Create non-contiguous Fortran ordered array
292
+ x = np.array(np.random.rand(3, 3), order='F')[:, :2]
293
+ assert_array_almost_equal(x.ravel(), np.fromstring(x.tobytes()))
294
+
295
+ def test_flat_assignment(self,level=rlevel):
296
+ # Correct behaviour of ticket #194
297
+ x = np.empty((3, 1))
298
+ x.flat = np.arange(3)
299
+ assert_array_almost_equal(x, [[0], [1], [2]])
300
+ x.flat = np.arange(3, dtype=float)
301
+ assert_array_almost_equal(x, [[0], [1], [2]])
302
+
303
+ def test_broadcast_flat_assignment(self,level=rlevel):
304
+ # Ticket #194
305
+ x = np.empty((3, 1))
306
+
307
+ def bfa():
308
+ x[:] = np.arange(3)
309
+
310
+ def bfb():
311
+ x[:] = np.arange(3, dtype=float)
312
+
313
+ self.assertRaises(ValueError, bfa)
314
+ self.assertRaises(ValueError, bfb)
315
+
316
+ def test_nonarray_assignment(self):
317
+ # See also Issue gh-2870, test for non-array assignment
318
+ # and equivalent unsafe casted array assignment
319
+ a = np.arange(10)
320
+ b = np.ones(10, dtype=bool)
321
+ r = np.arange(10)
322
+
323
+ def assign(a, b, c):
324
+ a[b] = c
325
+
326
+ assert_raises(ValueError, assign, a, b, np.nan)
327
+ a[b] = np.array(np.nan) # but not this.
328
+ assert_raises(ValueError, assign, a, r, np.nan)
329
+ a[r] = np.array(np.nan)
330
+
331
+ def test_unpickle_dtype_with_object(self,level=rlevel):
332
+ # Implemented in r2840
333
+ dt = np.dtype([('x', int), ('y', np.object_), ('z', 'O')])
334
+ f = BytesIO()
335
+ pickle.dump(dt, f)
336
+ f.seek(0)
337
+ dt_ = pickle.load(f)
338
+ f.close()
339
+ assert_equal(dt, dt_)
340
+
341
+ def test_mem_array_creation_invalid_specification(self,level=rlevel):
342
+ # Ticket #196
343
+ dt = np.dtype([('x', int), ('y', np.object_)])
344
+ # Wrong way
345
+ self.assertRaises(ValueError, np.array, [1, 'object'], dt)
346
+ # Correct way
347
+ np.array([(1, 'object')], dt)
348
+
349
+ def test_recarray_single_element(self,level=rlevel):
350
+ # Ticket #202
351
+ a = np.array([1, 2, 3], dtype=np.int32)
352
+ b = a.copy()
353
+ r = np.rec.array(a, shape=1, formats=['3i4'], names=['d'])
354
+ assert_array_equal(a, b)
355
+ assert_equal(a, r[0][0])
356
+
357
+ def test_zero_sized_array_indexing(self,level=rlevel):
358
+ # Ticket #205
359
+ tmp = np.array([])
360
+
361
+ def index_tmp():
362
+ tmp[np.array(10)]
363
+
364
+ self.assertRaises(IndexError, index_tmp)
365
+
366
+ def test_chararray_rstrip(self,level=rlevel):
367
+ # Ticket #222
368
+ x = np.chararray((1,), 5)
369
+ x[0] = asbytes('a ')
370
+ x = x.rstrip()
371
+ assert_equal(x[0], asbytes('a'))
372
+
373
+ def test_object_array_shape(self,level=rlevel):
374
+ # Ticket #239
375
+ assert_equal(np.array([[1, 2], 3, 4], dtype=object).shape, (3,))
376
+ assert_equal(np.array([[1, 2], [3, 4]], dtype=object).shape, (2, 2))
377
+ assert_equal(np.array([(1, 2), (3, 4)], dtype=object).shape, (2, 2))
378
+ assert_equal(np.array([], dtype=object).shape, (0,))
379
+ assert_equal(np.array([[], [], []], dtype=object).shape, (3, 0))
380
+ assert_equal(np.array([[3, 4], [5, 6], None], dtype=object).shape, (3,))
381
+
382
+ def test_mem_around(self,level=rlevel):
383
+ # Ticket #243
384
+ x = np.zeros((1,))
385
+ y = [0]
386
+ decimal = 6
387
+ np.around(abs(x-y), decimal) <= 10.0**(-decimal)
388
+
389
+ def test_character_array_strip(self,level=rlevel):
390
+ # Ticket #246
391
+ x = np.char.array(("x", "x ", "x "))
392
+ for c in x:
393
+ assert_equal(c, "x")
394
+
395
+ def test_lexsort(self,level=rlevel):
396
+ # Lexsort memory error
397
+ v = np.array([1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
398
+ assert_equal(np.lexsort(v), 0)
399
+
400
+ def test_lexsort_invalid_sequence(self):
401
+ # Issue gh-4123
402
+ class BuggySequence(object):
403
+ def __len__(self):
404
+ return 4
405
+
406
+ def __getitem__(self, key):
407
+ raise KeyError
408
+
409
+ assert_raises(KeyError, np.lexsort, BuggySequence())
410
+
411
+ def test_pickle_py2_bytes_encoding(self):
412
+ # Check that arrays and scalars pickled on Py2 are
413
+ # unpickleable on Py3 using encoding='bytes'
414
+
415
+ test_data = [
416
+ # (original, py2_pickle)
417
+ (np.unicode_('\u6f2c'),
418
+ asbytes("cnumpy.core.multiarray\nscalar\np0\n(cnumpy\ndtype\np1\n"
419
+ "(S'U1'\np2\nI0\nI1\ntp3\nRp4\n(I3\nS'<'\np5\nNNNI4\nI4\n"
420
+ "I0\ntp6\nbS',o\\x00\\x00'\np7\ntp8\nRp9\n.")),
421
+
422
+ (np.array([9e123], dtype=np.float64),
423
+ asbytes("cnumpy.core.multiarray\n_reconstruct\np0\n(cnumpy\nndarray\n"
424
+ "p1\n(I0\ntp2\nS'b'\np3\ntp4\nRp5\n(I1\n(I1\ntp6\ncnumpy\ndtype\n"
425
+ "p7\n(S'f8'\np8\nI0\nI1\ntp9\nRp10\n(I3\nS'<'\np11\nNNNI-1\nI-1\n"
426
+ "I0\ntp12\nbI00\nS'O\\x81\\xb7Z\\xaa:\\xabY'\np13\ntp14\nb.")),
427
+
428
+ (np.array([(9e123,)], dtype=[('name', float)]),
429
+ asbytes("cnumpy.core.multiarray\n_reconstruct\np0\n(cnumpy\nndarray\np1\n"
430
+ "(I0\ntp2\nS'b'\np3\ntp4\nRp5\n(I1\n(I1\ntp6\ncnumpy\ndtype\np7\n"
431
+ "(S'V8'\np8\nI0\nI1\ntp9\nRp10\n(I3\nS'|'\np11\nN(S'name'\np12\ntp13\n"
432
+ "(dp14\ng12\n(g7\n(S'f8'\np15\nI0\nI1\ntp16\nRp17\n(I3\nS'<'\np18\nNNNI-1\n"
433
+ "I-1\nI0\ntp19\nbI0\ntp20\nsI8\nI1\nI0\ntp21\n"
434
+ "bI00\nS'O\\x81\\xb7Z\\xaa:\\xabY'\np22\ntp23\nb.")),
435
+ ]
436
+
437
+ if sys.version_info[:2] >= (3, 4):
438
+ # encoding='bytes' was added in Py3.4
439
+ for original, data in test_data:
440
+ result = pickle.loads(data, encoding='bytes')
441
+ assert_equal(result, original)
442
+
443
+ if isinstance(result, np.ndarray) and result.dtype.names:
444
+ for name in result.dtype.names:
445
+ assert_(isinstance(name, str))
446
+
447
+ def test_pickle_dtype(self,level=rlevel):
448
+ # Ticket #251
449
+ pickle.dumps(np.float)
450
+
451
+ def test_swap_real(self, level=rlevel):
452
+ # Ticket #265
453
+ assert_equal(np.arange(4, dtype='>c8').imag.max(), 0.0)
454
+ assert_equal(np.arange(4, dtype='<c8').imag.max(), 0.0)
455
+ assert_equal(np.arange(4, dtype='>c8').real.max(), 3.0)
456
+ assert_equal(np.arange(4, dtype='<c8').real.max(), 3.0)
457
+
458
+ def test_object_array_from_list(self, level=rlevel):
459
+ # Ticket #270
460
+ np.array([1, 'A', None]) # Should succeed
461
+
462
+ def test_multiple_assign(self, level=rlevel):
463
+ # Ticket #273
464
+ a = np.zeros((3, 1), int)
465
+ a[[1, 2]] = 1
466
+
467
+ def test_empty_array_type(self, level=rlevel):
468
+ assert_equal(np.array([]).dtype, np.zeros(0).dtype)
469
+
470
+ def test_void_copyswap(self, level=rlevel):
471
+ dt = np.dtype([('one', '<i4'), ('two', '<i4')])
472
+ x = np.array((1, 2), dtype=dt)
473
+ x = x.byteswap()
474
+ assert_(x['one'] > 1 and x['two'] > 2)
475
+
476
+ def test_method_args(self, level=rlevel):
477
+ # Make sure methods and functions have same default axis
478
+ # keyword and arguments
479
+ funcs1 = ['argmax', 'argmin', 'sum', ('product', 'prod'),
480
+ ('sometrue', 'any'),
481
+ ('alltrue', 'all'), 'cumsum', ('cumproduct', 'cumprod'),
482
+ 'ptp', 'cumprod', 'prod', 'std', 'var', 'mean',
483
+ 'round', 'min', 'max', 'argsort', 'sort']
484
+ funcs2 = ['compress', 'take', 'repeat']
485
+
486
+ for func in funcs1:
487
+ arr = np.random.rand(8, 7)
488
+ arr2 = arr.copy()
489
+ if isinstance(func, tuple):
490
+ func_meth = func[1]
491
+ func = func[0]
492
+ else:
493
+ func_meth = func
494
+ res1 = getattr(arr, func_meth)()
495
+ res2 = getattr(np, func)(arr2)
496
+ if res1 is None:
497
+ res1 = arr
498
+
499
+ if res1.dtype.kind in 'uib':
500
+ assert_((res1 == res2).all(), func)
501
+ else:
502
+ assert_(abs(res1-res2).max() < 1e-8, func)
503
+
504
+ for func in funcs2:
505
+ arr1 = np.random.rand(8, 7)
506
+ arr2 = np.random.rand(8, 7)
507
+ res1 = None
508
+ if func == 'compress':
509
+ arr1 = arr1.ravel()
510
+ res1 = getattr(arr2, func)(arr1)
511
+ else:
512
+ arr2 = (15*arr2).astype(int).ravel()
513
+ if res1 is None:
514
+ res1 = getattr(arr1, func)(arr2)
515
+ res2 = getattr(np, func)(arr1, arr2)
516
+ assert_(abs(res1-res2).max() < 1e-8, func)
517
+
518
+ def test_mem_lexsort_strings(self, level=rlevel):
519
+ # Ticket #298
520
+ lst = ['abc', 'cde', 'fgh']
521
+ np.lexsort((lst,))
522
+
523
+ def test_fancy_index(self, level=rlevel):
524
+ # Ticket #302
525
+ x = np.array([1, 2])[np.array([0])]
526
+ assert_equal(x.shape, (1,))
527
+
528
+ def test_recarray_copy(self, level=rlevel):
529
+ # Ticket #312
530
+ dt = [('x', np.int16), ('y', np.float64)]
531
+ ra = np.array([(1, 2.3)], dtype=dt)
532
+ rb = np.rec.array(ra, dtype=dt)
533
+ rb['x'] = 2.
534
+ assert_(ra['x'] != rb['x'])
535
+
536
+ def test_rec_fromarray(self, level=rlevel):
537
+ # Ticket #322
538
+ x1 = np.array([[1, 2], [3, 4], [5, 6]])
539
+ x2 = np.array(['a', 'dd', 'xyz'])
540
+ x3 = np.array([1.1, 2, 3])
541
+ np.rec.fromarrays([x1, x2, x3], formats="(2,)i4,a3,f8")
542
+
543
+ def test_object_array_assign(self, level=rlevel):
544
+ x = np.empty((2, 2), object)
545
+ x.flat[2] = (1, 2, 3)
546
+ assert_equal(x.flat[2], (1, 2, 3))
547
+
548
+ def test_ndmin_float64(self, level=rlevel):
549
+ # Ticket #324
550
+ x = np.array([1, 2, 3], dtype=np.float64)
551
+ assert_equal(np.array(x, dtype=np.float32, ndmin=2).ndim, 2)
552
+ assert_equal(np.array(x, dtype=np.float64, ndmin=2).ndim, 2)
553
+
554
+ def test_ndmin_order(self, level=rlevel):
555
+ # Issue #465 and related checks
556
+ assert_(np.array([1, 2], order='C', ndmin=3).flags.c_contiguous)
557
+ assert_(np.array([1, 2], order='F', ndmin=3).flags.f_contiguous)
558
+ assert_(np.array(np.ones((2, 2), order='F'), ndmin=3).flags.f_contiguous)
559
+ assert_(np.array(np.ones((2, 2), order='C'), ndmin=3).flags.c_contiguous)
560
+
561
+ def test_mem_axis_minimization(self, level=rlevel):
562
+ # Ticket #327
563
+ data = np.arange(5)
564
+ data = np.add.outer(data, data)
565
+
566
+ def test_mem_float_imag(self, level=rlevel):
567
+ # Ticket #330
568
+ np.float64(1.0).imag
569
+
570
+ def test_dtype_tuple(self, level=rlevel):
571
+ # Ticket #334
572
+ assert_(np.dtype('i4') == np.dtype(('i4', ())))
573
+
574
+ def test_dtype_posttuple(self, level=rlevel):
575
+ # Ticket #335
576
+ np.dtype([('col1', '()i4')])
577
+
578
+ def test_numeric_carray_compare(self, level=rlevel):
579
+ # Ticket #341
580
+ assert_equal(np.array(['X'], 'c'), asbytes('X'))
581
+
582
+ def test_string_array_size(self, level=rlevel):
583
+ # Ticket #342
584
+ self.assertRaises(ValueError,
585
+ np.array, [['X'], ['X', 'X', 'X']], '|S1')
586
+
587
+ def test_dtype_repr(self, level=rlevel):
588
+ # Ticket #344
589
+ dt1 = np.dtype(('uint32', 2))
590
+ dt2 = np.dtype(('uint32', (2,)))
591
+ assert_equal(dt1.__repr__(), dt2.__repr__())
592
+
593
+ def test_reshape_order(self, level=rlevel):
594
+ # Make sure reshape order works.
595
+ a = np.arange(6).reshape(2, 3, order='F')
596
+ assert_equal(a, [[0, 2, 4], [1, 3, 5]])
597
+ a = np.array([[1, 2], [3, 4], [5, 6], [7, 8]])
598
+ b = a[:, 1]
599
+ assert_equal(b.reshape(2, 2, order='F'), [[2, 6], [4, 8]])
600
+
601
+ def test_reshape_zero_strides(self, level=rlevel):
602
+ # Issue #380, test reshaping of zero strided arrays
603
+ a = np.ones(1)
604
+ a = np.lib.stride_tricks.as_strided(a, shape=(5,), strides=(0,))
605
+ assert_(a.reshape(5, 1).strides[0] == 0)
606
+
607
+ def test_reshape_zero_size(self, level=rlevel):
608
+ # GitHub Issue #2700, setting shape failed for 0-sized arrays
609
+ a = np.ones((0, 2))
610
+ a.shape = (-1, 2)
611
+
612
+ # Cannot test if NPY_RELAXED_STRIDES_CHECKING changes the strides.
613
+ # With NPY_RELAXED_STRIDES_CHECKING the test becomes superfluous.
614
+ @dec.skipif(np.ones(1).strides[0] == np.iinfo(np.intp).max)
615
+ def test_reshape_trailing_ones_strides(self):
616
+ # GitHub issue gh-2949, bad strides for trailing ones of new shape
617
+ a = np.zeros(12, dtype=np.int32)[::2] # not contiguous
618
+ strides_c = (16, 8, 8, 8)
619
+ strides_f = (8, 24, 48, 48)
620
+ assert_equal(a.reshape(3, 2, 1, 1).strides, strides_c)
621
+ assert_equal(a.reshape(3, 2, 1, 1, order='F').strides, strides_f)
622
+ assert_equal(np.array(0, dtype=np.int32).reshape(1, 1).strides, (4, 4))
623
+
624
+ def test_repeat_discont(self, level=rlevel):
625
+ # Ticket #352
626
+ a = np.arange(12).reshape(4, 3)[:, 2]
627
+ assert_equal(a.repeat(3), [2, 2, 2, 5, 5, 5, 8, 8, 8, 11, 11, 11])
628
+
629
+ def test_array_index(self, level=rlevel):
630
+ # Make sure optimization is not called in this case.
631
+ a = np.array([1, 2, 3])
632
+ a2 = np.array([[1, 2, 3]])
633
+ assert_equal(a[np.where(a == 3)], a2[np.where(a2 == 3)])
634
+
635
+ def test_object_argmax(self, level=rlevel):
636
+ a = np.array([1, 2, 3], dtype=object)
637
+ assert_(a.argmax() == 2)
638
+
639
+ def test_recarray_fields(self, level=rlevel):
640
+ # Ticket #372
641
+ dt0 = np.dtype([('f0', 'i4'), ('f1', 'i4')])
642
+ dt1 = np.dtype([('f0', 'i8'), ('f1', 'i8')])
643
+ for a in [np.array([(1, 2), (3, 4)], "i4,i4"),
644
+ np.rec.array([(1, 2), (3, 4)], "i4,i4"),
645
+ np.rec.array([(1, 2), (3, 4)]),
646
+ np.rec.fromarrays([(1, 2), (3, 4)], "i4,i4"),
647
+ np.rec.fromarrays([(1, 2), (3, 4)])]:
648
+ assert_(a.dtype in [dt0, dt1])
649
+
650
+ def test_random_shuffle(self, level=rlevel):
651
+ # Ticket #374
652
+ a = np.arange(5).reshape((5, 1))
653
+ b = a.copy()
654
+ np.random.shuffle(b)
655
+ assert_equal(np.sort(b, axis=0), a)
656
+
657
+ def test_refcount_vdot(self, level=rlevel):
658
+ # Changeset #3443
659
+ _assert_valid_refcount(np.vdot)
660
+
661
+ def test_startswith(self, level=rlevel):
662
+ ca = np.char.array(['Hi', 'There'])
663
+ assert_equal(ca.startswith('H'), [True, False])
664
+
665
+ def test_noncommutative_reduce_accumulate(self, level=rlevel):
666
+ # Ticket #413
667
+ tosubtract = np.arange(5)
668
+ todivide = np.array([2.0, 0.5, 0.25])
669
+ assert_equal(np.subtract.reduce(tosubtract), -10)
670
+ assert_equal(np.divide.reduce(todivide), 16.0)
671
+ assert_array_equal(np.subtract.accumulate(tosubtract),
672
+ np.array([0, -1, -3, -6, -10]))
673
+ assert_array_equal(np.divide.accumulate(todivide),
674
+ np.array([2., 4., 16.]))
675
+
676
+ def test_convolve_empty(self, level=rlevel):
677
+ # Convolve should raise an error for empty input array.
678
+ self.assertRaises(ValueError, np.convolve, [], [1])
679
+ self.assertRaises(ValueError, np.convolve, [1], [])
680
+
681
+ def test_multidim_byteswap(self, level=rlevel):
682
+ # Ticket #449
683
+ r = np.array([(1, (0, 1, 2))], dtype="i2,3i2")
684
+ assert_array_equal(r.byteswap(),
685
+ np.array([(256, (0, 256, 512))], r.dtype))
686
+
687
+ def test_string_NULL(self, level=rlevel):
688
+ # Changeset 3557
689
+ assert_equal(np.array("a\x00\x0b\x0c\x00").item(),
690
+ 'a\x00\x0b\x0c')
691
+
692
+ def test_junk_in_string_fields_of_recarray(self, level=rlevel):
693
+ # Ticket #483
694
+ r = np.array([[asbytes('abc')]], dtype=[('var1', '|S20')])
695
+ assert_(asbytes(r['var1'][0][0]) == asbytes('abc'))
696
+
697
+ def test_take_output(self, level=rlevel):
698
+ # Ensure that 'take' honours output parameter.
699
+ x = np.arange(12).reshape((3, 4))
700
+ a = np.take(x, [0, 2], axis=1)
701
+ b = np.zeros_like(a)
702
+ np.take(x, [0, 2], axis=1, out=b)
703
+ assert_array_equal(a, b)
704
+
705
+ def test_take_object_fail(self):
706
+ # Issue gh-3001
707
+ d = 123.
708
+ a = np.array([d, 1], dtype=object)
709
+ ref_d = sys.getrefcount(d)
710
+ try:
711
+ a.take([0, 100])
712
+ except IndexError:
713
+ pass
714
+ assert_(ref_d == sys.getrefcount(d))
715
+
716
+ def test_array_str_64bit(self, level=rlevel):
717
+ # Ticket #501
718
+ s = np.array([1, np.nan], dtype=np.float64)
719
+ with np.errstate(all='raise'):
720
+ np.array_str(s) # Should succeed
721
+
722
+ def test_frompyfunc_endian(self, level=rlevel):
723
+ # Ticket #503
724
+ from math import radians
725
+ uradians = np.frompyfunc(radians, 1, 1)
726
+ big_endian = np.array([83.4, 83.5], dtype='>f8')
727
+ little_endian = np.array([83.4, 83.5], dtype='<f8')
728
+ assert_almost_equal(uradians(big_endian).astype(float),
729
+ uradians(little_endian).astype(float))
730
+
731
+ def test_mem_string_arr(self, level=rlevel):
732
+ # Ticket #514
733
+ s = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
734
+ t = []
735
+ np.hstack((t, s))
736
+
737
+ def test_arr_transpose(self, level=rlevel):
738
+ # Ticket #516
739
+ x = np.random.rand(*(2,)*16)
740
+ x.transpose(list(range(16))) # Should succeed
741
+
742
+ def test_string_mergesort(self, level=rlevel):
743
+ # Ticket #540
744
+ x = np.array(['a']*32)
745
+ assert_array_equal(x.argsort(kind='m'), np.arange(32))
746
+
747
+ def test_argmax_byteorder(self, level=rlevel):
748
+ # Ticket #546
749
+ a = np.arange(3, dtype='>f')
750
+ assert_(a[a.argmax()] == a.max())
751
+
752
+ def test_rand_seed(self, level=rlevel):
753
+ # Ticket #555
754
+ for l in np.arange(4):
755
+ np.random.seed(l)
756
+
757
+ def test_mem_deallocation_leak(self, level=rlevel):
758
+ # Ticket #562
759
+ a = np.zeros(5, dtype=float)
760
+ b = np.array(a, dtype=float)
761
+ del a, b
762
+
763
+ def test_mem_on_invalid_dtype(self):
764
+ "Ticket #583"
765
+ self.assertRaises(ValueError, np.fromiter, [['12', ''], ['13', '']], str)
766
+
767
+ def test_dot_negative_stride(self, level=rlevel):
768
+ # Ticket #588
769
+ x = np.array([[1, 5, 25, 125., 625]])
770
+ y = np.array([[20.], [160.], [640.], [1280.], [1024.]])
771
+ z = y[::-1].copy()
772
+ y2 = y[::-1]
773
+ assert_equal(np.dot(x, z), np.dot(x, y2))
774
+
775
+ def test_object_casting(self, level=rlevel):
776
+ # This used to trigger the object-type version of
777
+ # the bitwise_or operation, because float64 -> object
778
+ # casting succeeds
779
+ def rs():
780
+ x = np.ones([484, 286])
781
+ y = np.zeros([484, 286])
782
+ x |= y
783
+
784
+ self.assertRaises(TypeError, rs)
785
+
786
+ def test_unicode_scalar(self, level=rlevel):
787
+ # Ticket #600
788
+ x = np.array(["DROND", "DROND1"], dtype="U6")
789
+ el = x[1]
790
+ new = pickle.loads(pickle.dumps(el))
791
+ assert_equal(new, el)
792
+
793
+ def test_arange_non_native_dtype(self, level=rlevel):
794
+ # Ticket #616
795
+ for T in ('>f4', '<f4'):
796
+ dt = np.dtype(T)
797
+ assert_equal(np.arange(0, dtype=dt).dtype, dt)
798
+ assert_equal(np.arange(0.5, dtype=dt).dtype, dt)
799
+ assert_equal(np.arange(5, dtype=dt).dtype, dt)
800
+
801
+ def test_bool_flat_indexing_invalid_nr_elements(self, level=rlevel):
802
+ s = np.ones(10, dtype=float)
803
+ x = np.array((15,), dtype=float)
804
+
805
+ def ia(x, s, v):
806
+ x[(s > 0)] = v
807
+
808
+ # After removing deprecation, the following are ValueErrors.
809
+ # This might seem odd as compared to the value error below. This
810
+ # is due to the fact that the new code always uses "nonzero" logic
811
+ # and the boolean special case is not taken.
812
+ with warnings.catch_warnings():
813
+ warnings.simplefilter('ignore', DeprecationWarning)
814
+ warnings.simplefilter('ignore', np.VisibleDeprecationWarning)
815
+ self.assertRaises(IndexError, ia, x, s, np.zeros(9, dtype=float))
816
+ self.assertRaises(IndexError, ia, x, s, np.zeros(11, dtype=float))
817
+ # Old special case (different code path):
818
+ self.assertRaises(ValueError, ia, x.flat, s, np.zeros(9, dtype=float))
819
+ self.assertRaises(ValueError, ia, x.flat, s, np.zeros(11, dtype=float))
820
+
821
+ def test_mem_scalar_indexing(self, level=rlevel):
822
+ # Ticket #603
823
+ x = np.array([0], dtype=float)
824
+ index = np.array(0, dtype=np.int32)
825
+ x[index]
826
+
827
+ def test_binary_repr_0_width(self, level=rlevel):
828
+ assert_equal(np.binary_repr(0, width=3), '000')
829
+
830
+ def test_fromstring(self, level=rlevel):
831
+ assert_equal(np.fromstring("12:09:09", dtype=int, sep=":"),
832
+ [12, 9, 9])
833
+
834
+ def test_searchsorted_variable_length(self, level=rlevel):
835
+ x = np.array(['a', 'aa', 'b'])
836
+ y = np.array(['d', 'e'])
837
+ assert_equal(x.searchsorted(y), [3, 3])
838
+
839
+ def test_string_argsort_with_zeros(self, level=rlevel):
840
+ # Check argsort for strings containing zeros.
841
+ x = np.fromstring("\x00\x02\x00\x01", dtype="|S2")
842
+ assert_array_equal(x.argsort(kind='m'), np.array([1, 0]))
843
+ assert_array_equal(x.argsort(kind='q'), np.array([1, 0]))
844
+
845
+ def test_string_sort_with_zeros(self, level=rlevel):
846
+ # Check sort for strings containing zeros.
847
+ x = np.fromstring("\x00\x02\x00\x01", dtype="|S2")
848
+ y = np.fromstring("\x00\x01\x00\x02", dtype="|S2")
849
+ assert_array_equal(np.sort(x, kind="q"), y)
850
+
851
+ def test_copy_detection_zero_dim(self, level=rlevel):
852
+ # Ticket #658
853
+ np.indices((0, 3, 4)).T.reshape(-1, 3)
854
+
855
+ def test_flat_byteorder(self, level=rlevel):
856
+ # Ticket #657
857
+ x = np.arange(10)
858
+ assert_array_equal(x.astype('>i4'), x.astype('<i4').flat[:])
859
+ assert_array_equal(x.astype('>i4').flat[:], x.astype('<i4'))
860
+
861
+ def test_uint64_from_negative(self, level=rlevel):
862
+ assert_equal(np.uint64(-2), np.uint64(18446744073709551614))
863
+
864
+ def test_sign_bit(self, level=rlevel):
865
+ x = np.array([0, -0.0, 0])
866
+ assert_equal(str(np.abs(x)), '[ 0. 0. 0.]')
867
+
868
+ def test_flat_index_byteswap(self, level=rlevel):
869
+ for dt in (np.dtype('<i4'), np.dtype('>i4')):
870
+ x = np.array([-1, 0, 1], dtype=dt)
871
+ assert_equal(x.flat[0].dtype, x[0].dtype)
872
+
873
+ def test_copy_detection_corner_case(self, level=rlevel):
874
+ # Ticket #658
875
+ np.indices((0, 3, 4)).T.reshape(-1, 3)
876
+
877
+ # Cannot test if NPY_RELAXED_STRIDES_CHECKING changes the strides.
878
+ # With NPY_RELAXED_STRIDES_CHECKING the test becomes superfluous,
879
+ # 0-sized reshape itself is tested elsewhere.
880
+ @dec.skipif(np.ones(1).strides[0] == np.iinfo(np.intp).max)
881
+ def test_copy_detection_corner_case2(self, level=rlevel):
882
+ # Ticket #771: strides are not set correctly when reshaping 0-sized
883
+ # arrays
884
+ b = np.indices((0, 3, 4)).T.reshape(-1, 3)
885
+ assert_equal(b.strides, (3 * b.itemsize, b.itemsize))
886
+
887
+ def test_object_array_refcounting(self, level=rlevel):
888
+ # Ticket #633
889
+ if not hasattr(sys, 'getrefcount'):
890
+ return
891
+
892
+ # NB. this is probably CPython-specific
893
+
894
+ cnt = sys.getrefcount
895
+
896
+ a = object()
897
+ b = object()
898
+ c = object()
899
+
900
+ cnt0_a = cnt(a)
901
+ cnt0_b = cnt(b)
902
+ cnt0_c = cnt(c)
903
+
904
+ # -- 0d -> 1-d broadcast slice assignment
905
+
906
+ arr = np.zeros(5, dtype=np.object_)
907
+
908
+ arr[:] = a
909
+ assert_equal(cnt(a), cnt0_a + 5)
910
+
911
+ arr[:] = b
912
+ assert_equal(cnt(a), cnt0_a)
913
+ assert_equal(cnt(b), cnt0_b + 5)
914
+
915
+ arr[:2] = c
916
+ assert_equal(cnt(b), cnt0_b + 3)
917
+ assert_equal(cnt(c), cnt0_c + 2)
918
+
919
+ del arr
920
+
921
+ # -- 1-d -> 2-d broadcast slice assignment
922
+
923
+ arr = np.zeros((5, 2), dtype=np.object_)
924
+ arr0 = np.zeros(2, dtype=np.object_)
925
+
926
+ arr0[0] = a
927
+ assert_(cnt(a) == cnt0_a + 1)
928
+ arr0[1] = b
929
+ assert_(cnt(b) == cnt0_b + 1)
930
+
931
+ arr[:,:] = arr0
932
+ assert_(cnt(a) == cnt0_a + 6)
933
+ assert_(cnt(b) == cnt0_b + 6)
934
+
935
+ arr[:, 0] = None
936
+ assert_(cnt(a) == cnt0_a + 1)
937
+
938
+ del arr, arr0
939
+
940
+ # -- 2-d copying + flattening
941
+
942
+ arr = np.zeros((5, 2), dtype=np.object_)
943
+
944
+ arr[:, 0] = a
945
+ arr[:, 1] = b
946
+ assert_(cnt(a) == cnt0_a + 5)
947
+ assert_(cnt(b) == cnt0_b + 5)
948
+
949
+ arr2 = arr.copy()
950
+ assert_(cnt(a) == cnt0_a + 10)
951
+ assert_(cnt(b) == cnt0_b + 10)
952
+
953
+ arr2 = arr[:, 0].copy()
954
+ assert_(cnt(a) == cnt0_a + 10)
955
+ assert_(cnt(b) == cnt0_b + 5)
956
+
957
+ arr2 = arr.flatten()
958
+ assert_(cnt(a) == cnt0_a + 10)
959
+ assert_(cnt(b) == cnt0_b + 10)
960
+
961
+ del arr, arr2
962
+
963
+ # -- concatenate, repeat, take, choose
964
+
965
+ arr1 = np.zeros((5, 1), dtype=np.object_)
966
+ arr2 = np.zeros((5, 1), dtype=np.object_)
967
+
968
+ arr1[...] = a
969
+ arr2[...] = b
970
+ assert_(cnt(a) == cnt0_a + 5)
971
+ assert_(cnt(b) == cnt0_b + 5)
972
+
973
+ tmp = np.concatenate((arr1, arr2))
974
+ assert_(cnt(a) == cnt0_a + 5 + 5)
975
+ assert_(cnt(b) == cnt0_b + 5 + 5)
976
+
977
+ tmp = arr1.repeat(3, axis=0)
978
+ assert_(cnt(a) == cnt0_a + 5 + 3*5)
979
+
980
+ tmp = arr1.take([1, 2, 3], axis=0)
981
+ assert_(cnt(a) == cnt0_a + 5 + 3)
982
+
983
+ x = np.array([[0], [1], [0], [1], [1]], int)
984
+ tmp = x.choose(arr1, arr2)
985
+ assert_(cnt(a) == cnt0_a + 5 + 2)
986
+ assert_(cnt(b) == cnt0_b + 5 + 3)
987
+
988
+ del tmp # Avoid pyflakes unused variable warning
989
+
990
+ def test_mem_custom_float_to_array(self, level=rlevel):
991
+ # Ticket 702
992
+ class MyFloat(object):
993
+ def __float__(self):
994
+ return 1.0
995
+
996
+ tmp = np.atleast_1d([MyFloat()])
997
+ tmp.astype(float) # Should succeed
998
+
999
+ def test_object_array_refcount_self_assign(self, level=rlevel):
1000
+ # Ticket #711
1001
+ class VictimObject(object):
1002
+ deleted = False
1003
+
1004
+ def __del__(self):
1005
+ self.deleted = True
1006
+
1007
+ d = VictimObject()
1008
+ arr = np.zeros(5, dtype=np.object_)
1009
+ arr[:] = d
1010
+ del d
1011
+ arr[:] = arr # refcount of 'd' might hit zero here
1012
+ assert_(not arr[0].deleted)
1013
+ arr[:] = arr # trying to induce a segfault by doing it again...
1014
+ assert_(not arr[0].deleted)
1015
+
1016
+ def test_mem_fromiter_invalid_dtype_string(self, level=rlevel):
1017
+ x = [1, 2, 3]
1018
+ self.assertRaises(ValueError,
1019
+ np.fromiter, [xi for xi in x], dtype='S')
1020
+
1021
+ def test_reduce_big_object_array(self, level=rlevel):
1022
+ # Ticket #713
1023
+ oldsize = np.setbufsize(10*16)
1024
+ a = np.array([None]*161, object)
1025
+ assert_(not np.any(a))
1026
+ np.setbufsize(oldsize)
1027
+
1028
+ def test_mem_0d_array_index(self, level=rlevel):
1029
+ # Ticket #714
1030
+ np.zeros(10)[np.array(0)]
1031
+
1032
+ def test_floats_from_string(self, level=rlevel):
1033
+ # Ticket #640, floats from string
1034
+ fsingle = np.single('1.234')
1035
+ fdouble = np.double('1.234')
1036
+ flongdouble = np.longdouble('1.234')
1037
+ assert_almost_equal(fsingle, 1.234)
1038
+ assert_almost_equal(fdouble, 1.234)
1039
+ assert_almost_equal(flongdouble, 1.234)
1040
+
1041
+ def test_nonnative_endian_fill(self, level=rlevel):
1042
+ # Non-native endian arrays were incorrectly filled with scalars
1043
+ # before r5034.
1044
+ if sys.byteorder == 'little':
1045
+ dtype = np.dtype('>i4')
1046
+ else:
1047
+ dtype = np.dtype('<i4')
1048
+ x = np.empty([1], dtype=dtype)
1049
+ x.fill(1)
1050
+ assert_equal(x, np.array([1], dtype=dtype))
1051
+
1052
+ def test_dot_alignment_sse2(self, level=rlevel):
1053
+ # Test for ticket #551, changeset r5140
1054
+ x = np.zeros((30, 40))
1055
+ y = pickle.loads(pickle.dumps(x))
1056
+ # y is now typically not aligned on a 8-byte boundary
1057
+ z = np.ones((1, y.shape[0]))
1058
+ # This shouldn't cause a segmentation fault:
1059
+ np.dot(z, y)
1060
+
1061
+ def test_astype_copy(self, level=rlevel):
1062
+ # Ticket #788, changeset r5155
1063
+ # The test data file was generated by scipy.io.savemat.
1064
+ # The dtype is float64, but the isbuiltin attribute is 0.
1065
+ data_dir = path.join(path.dirname(__file__), 'data')
1066
+ filename = path.join(data_dir, "astype_copy.pkl")
1067
+ if sys.version_info[0] >= 3:
1068
+ f = open(filename, 'rb')
1069
+ xp = pickle.load(f, encoding='latin1')
1070
+ f.close()
1071
+ else:
1072
+ f = open(filename)
1073
+ xp = pickle.load(f)
1074
+ f.close()
1075
+ xpd = xp.astype(np.float64)
1076
+ assert_((xp.__array_interface__['data'][0] !=
1077
+ xpd.__array_interface__['data'][0]))
1078
+
1079
+ def test_compress_small_type(self, level=rlevel):
1080
+ # Ticket #789, changeset 5217.
1081
+ # compress with out argument segfaulted if cannot cast safely
1082
+ import numpy as np
1083
+ a = np.array([[1, 2], [3, 4]])
1084
+ b = np.zeros((2, 1), dtype=np.single)
1085
+ try:
1086
+ a.compress([True, False], axis=1, out=b)
1087
+ raise AssertionError("compress with an out which cannot be "
1088
+ "safely casted should not return "
1089
+ "successfully")
1090
+ except TypeError:
1091
+ pass
1092
+
1093
+ def test_attributes(self, level=rlevel):
1094
+ # Ticket #791
1095
+ class TestArray(np.ndarray):
1096
+ def __new__(cls, data, info):
1097
+ result = np.array(data)
1098
+ result = result.view(cls)
1099
+ result.info = info
1100
+ return result
1101
+
1102
+ def __array_finalize__(self, obj):
1103
+ self.info = getattr(obj, 'info', '')
1104
+
1105
+ dat = TestArray([[1, 2, 3, 4], [5, 6, 7, 8]], 'jubba')
1106
+ assert_(dat.info == 'jubba')
1107
+ dat.resize((4, 2))
1108
+ assert_(dat.info == 'jubba')
1109
+ dat.sort()
1110
+ assert_(dat.info == 'jubba')
1111
+ dat.fill(2)
1112
+ assert_(dat.info == 'jubba')
1113
+ dat.put([2, 3, 4], [6, 3, 4])
1114
+ assert_(dat.info == 'jubba')
1115
+ dat.setfield(4, np.int32, 0)
1116
+ assert_(dat.info == 'jubba')
1117
+ dat.setflags()
1118
+ assert_(dat.info == 'jubba')
1119
+ assert_(dat.all(1).info == 'jubba')
1120
+ assert_(dat.any(1).info == 'jubba')
1121
+ assert_(dat.argmax(1).info == 'jubba')
1122
+ assert_(dat.argmin(1).info == 'jubba')
1123
+ assert_(dat.argsort(1).info == 'jubba')
1124
+ assert_(dat.astype(TestArray).info == 'jubba')
1125
+ assert_(dat.byteswap().info == 'jubba')
1126
+ assert_(dat.clip(2, 7).info == 'jubba')
1127
+ assert_(dat.compress([0, 1, 1]).info == 'jubba')
1128
+ assert_(dat.conj().info == 'jubba')
1129
+ assert_(dat.conjugate().info == 'jubba')
1130
+ assert_(dat.copy().info == 'jubba')
1131
+ dat2 = TestArray([2, 3, 1, 0], 'jubba')
1132
+ choices = [[0, 1, 2, 3], [10, 11, 12, 13],
1133
+ [20, 21, 22, 23], [30, 31, 32, 33]]
1134
+ assert_(dat2.choose(choices).info == 'jubba')
1135
+ assert_(dat.cumprod(1).info == 'jubba')
1136
+ assert_(dat.cumsum(1).info == 'jubba')
1137
+ assert_(dat.diagonal().info == 'jubba')
1138
+ assert_(dat.flatten().info == 'jubba')
1139
+ assert_(dat.getfield(np.int32, 0).info == 'jubba')
1140
+ assert_(dat.imag.info == 'jubba')
1141
+ assert_(dat.max(1).info == 'jubba')
1142
+ assert_(dat.mean(1).info == 'jubba')
1143
+ assert_(dat.min(1).info == 'jubba')
1144
+ assert_(dat.newbyteorder().info == 'jubba')
1145
+ assert_(dat.prod(1).info == 'jubba')
1146
+ assert_(dat.ptp(1).info == 'jubba')
1147
+ assert_(dat.ravel().info == 'jubba')
1148
+ assert_(dat.real.info == 'jubba')
1149
+ assert_(dat.repeat(2).info == 'jubba')
1150
+ assert_(dat.reshape((2, 4)).info == 'jubba')
1151
+ assert_(dat.round().info == 'jubba')
1152
+ assert_(dat.squeeze().info == 'jubba')
1153
+ assert_(dat.std(1).info == 'jubba')
1154
+ assert_(dat.sum(1).info == 'jubba')
1155
+ assert_(dat.swapaxes(0, 1).info == 'jubba')
1156
+ assert_(dat.take([2, 3, 5]).info == 'jubba')
1157
+ assert_(dat.transpose().info == 'jubba')
1158
+ assert_(dat.T.info == 'jubba')
1159
+ assert_(dat.var(1).info == 'jubba')
1160
+ assert_(dat.view(TestArray).info == 'jubba')
1161
+ # These methods do not preserve subclasses
1162
+ assert_(type(dat.nonzero()[0]) is np.ndarray)
1163
+ assert_(type(dat.nonzero()[1]) is np.ndarray)
1164
+
1165
+ def test_recarray_tolist(self, level=rlevel):
1166
+ # Ticket #793, changeset r5215
1167
+ # Comparisons fail for NaN, so we can't use random memory
1168
+ # for the test.
1169
+ buf = np.zeros(40, dtype=np.int8)
1170
+ a = np.recarray(2, formats="i4,f8,f8", names="id,x,y", buf=buf)
1171
+ b = a.tolist()
1172
+ assert_( a[0].tolist() == b[0])
1173
+ assert_( a[1].tolist() == b[1])
1174
+
1175
+ def test_nonscalar_item_method(self):
1176
+ # Make sure that .item() fails graciously when it should
1177
+ a = np.arange(5)
1178
+ assert_raises(ValueError, a.item)
1179
+
1180
+ def test_char_array_creation(self, level=rlevel):
1181
+ a = np.array('123', dtype='c')
1182
+ b = np.array(asbytes_nested(['1', '2', '3']))
1183
+ assert_equal(a, b)
1184
+
1185
+ def test_unaligned_unicode_access(self, level=rlevel):
1186
+ # Ticket #825
1187
+ for i in range(1, 9):
1188
+ msg = 'unicode offset: %d chars' % i
1189
+ t = np.dtype([('a', 'S%d' % i), ('b', 'U2')])
1190
+ x = np.array([(asbytes('a'), sixu('b'))], dtype=t)
1191
+ if sys.version_info[0] >= 3:
1192
+ assert_equal(str(x), "[(b'a', 'b')]", err_msg=msg)
1193
+ else:
1194
+ assert_equal(str(x), "[('a', u'b')]", err_msg=msg)
1195
+
1196
+ def test_sign_for_complex_nan(self, level=rlevel):
1197
+ # Ticket 794.
1198
+ with np.errstate(invalid='ignore'):
1199
+ C = np.array([-np.inf, -2+1j, 0, 2-1j, np.inf, np.nan])
1200
+ have = np.sign(C)
1201
+ want = np.array([-1+0j, -1+0j, 0+0j, 1+0j, 1+0j, np.nan])
1202
+ assert_equal(have, want)
1203
+
1204
+ def test_for_equal_names(self, level=rlevel):
1205
+ # Ticket #674
1206
+ dt = np.dtype([('foo', float), ('bar', float)])
1207
+ a = np.zeros(10, dt)
1208
+ b = list(a.dtype.names)
1209
+ b[0] = "notfoo"
1210
+ a.dtype.names = b
1211
+ assert_(a.dtype.names[0] == "notfoo")
1212
+ assert_(a.dtype.names[1] == "bar")
1213
+
1214
+ def test_for_object_scalar_creation(self, level=rlevel):
1215
+ # Ticket #816
1216
+ a = np.object_()
1217
+ b = np.object_(3)
1218
+ b2 = np.object_(3.0)
1219
+ c = np.object_([4, 5])
1220
+ d = np.object_([None, {}, []])
1221
+ assert_(a is None)
1222
+ assert_(type(b) is int)
1223
+ assert_(type(b2) is float)
1224
+ assert_(type(c) is np.ndarray)
1225
+ assert_(c.dtype == object)
1226
+ assert_(d.dtype == object)
1227
+
1228
+ def test_array_resize_method_system_error(self):
1229
+ # Ticket #840 - order should be an invalid keyword.
1230
+ x = np.array([[0, 1], [2, 3]])
1231
+ self.assertRaises(TypeError, x.resize, (2, 2), order='C')
1232
+
1233
+ def test_for_zero_length_in_choose(self, level=rlevel):
1234
+ "Ticket #882"
1235
+ a = np.array(1)
1236
+ self.assertRaises(ValueError, lambda x: x.choose([]), a)
1237
+
1238
+ def test_array_ndmin_overflow(self):
1239
+ "Ticket #947."
1240
+ self.assertRaises(ValueError, lambda: np.array([1], ndmin=33))
1241
+
1242
+ def test_errobj_reference_leak(self, level=rlevel):
1243
+ # Ticket #955
1244
+ with np.errstate(all="ignore"):
1245
+ z = int(0)
1246
+ p = np.int32(-1)
1247
+
1248
+ gc.collect()
1249
+ n_before = len(gc.get_objects())
1250
+ z**p # this shouldn't leak a reference to errobj
1251
+ gc.collect()
1252
+ n_after = len(gc.get_objects())
1253
+ assert_(n_before >= n_after, (n_before, n_after))
1254
+
1255
+ def test_void_scalar_with_titles(self, level=rlevel):
1256
+ # No ticket
1257
+ data = [('john', 4), ('mary', 5)]
1258
+ dtype1 = [(('source:yy', 'name'), 'O'), (('source:xx', 'id'), int)]
1259
+ arr = np.array(data, dtype=dtype1)
1260
+ assert_(arr[0][0] == 'john')
1261
+ assert_(arr[0][1] == 4)
1262
+
1263
+ def test_void_scalar_constructor(self):
1264
+ #Issue #1550
1265
+
1266
+ #Create test string data, construct void scalar from data and assert
1267
+ #that void scalar contains original data.
1268
+ test_string = np.array("test")
1269
+ test_string_void_scalar = np.core.multiarray.scalar(
1270
+ np.dtype(("V", test_string.dtype.itemsize)), test_string.tobytes())
1271
+
1272
+ assert_(test_string_void_scalar.view(test_string.dtype) == test_string)
1273
+
1274
+ #Create record scalar, construct from data and assert that
1275
+ #reconstructed scalar is correct.
1276
+ test_record = np.ones((), "i,i")
1277
+ test_record_void_scalar = np.core.multiarray.scalar(
1278
+ test_record.dtype, test_record.tobytes())
1279
+
1280
+ assert_(test_record_void_scalar == test_record)
1281
+
1282
+ #Test pickle and unpickle of void and record scalars
1283
+ assert_(pickle.loads(pickle.dumps(test_string)) == test_string)
1284
+ assert_(pickle.loads(pickle.dumps(test_record)) == test_record)
1285
+
1286
+ def test_blasdot_uninitialized_memory(self):
1287
+ # Ticket #950
1288
+ for m in [0, 1, 2]:
1289
+ for n in [0, 1, 2]:
1290
+ for k in range(3):
1291
+ # Try to ensure that x->data contains non-zero floats
1292
+ x = np.array([123456789e199], dtype=np.float64)
1293
+ x.resize((m, 0))
1294
+ y = np.array([123456789e199], dtype=np.float64)
1295
+ y.resize((0, n))
1296
+
1297
+ # `dot` should just return zero (m,n) matrix
1298
+ z = np.dot(x, y)
1299
+ assert_(np.all(z == 0))
1300
+ assert_(z.shape == (m, n))
1301
+
1302
+ def test_zeros(self):
1303
+ # Regression test for #1061.
1304
+ # Set a size which cannot fit into a 64 bits signed integer
1305
+ sz = 2 ** 64
1306
+ good = 'Maximum allowed dimension exceeded'
1307
+ try:
1308
+ np.empty(sz)
1309
+ except ValueError as e:
1310
+ if not str(e) == good:
1311
+ self.fail("Got msg '%s', expected '%s'" % (e, good))
1312
+ except Exception as e:
1313
+ self.fail("Got exception of type %s instead of ValueError" % type(e))
1314
+
1315
+ def test_huge_arange(self):
1316
+ # Regression test for #1062.
1317
+ # Set a size which cannot fit into a 64 bits signed integer
1318
+ sz = 2 ** 64
1319
+ good = 'Maximum allowed size exceeded'
1320
+ try:
1321
+ np.arange(sz)
1322
+ self.assertTrue(np.size == sz)
1323
+ except ValueError as e:
1324
+ if not str(e) == good:
1325
+ self.fail("Got msg '%s', expected '%s'" % (e, good))
1326
+ except Exception as e:
1327
+ self.fail("Got exception of type %s instead of ValueError" % type(e))
1328
+
1329
+ def test_fromiter_bytes(self):
1330
+ # Ticket #1058
1331
+ a = np.fromiter(list(range(10)), dtype='b')
1332
+ b = np.fromiter(list(range(10)), dtype='B')
1333
+ assert_(np.alltrue(a == np.array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])))
1334
+ assert_(np.alltrue(b == np.array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])))
1335
+
1336
+ def test_array_from_sequence_scalar_array(self):
1337
+ # Ticket #1078: segfaults when creating an array with a sequence of
1338
+ # 0d arrays.
1339
+ a = np.array((np.ones(2), np.array(2)))
1340
+ assert_equal(a.shape, (2,))
1341
+ assert_equal(a.dtype, np.dtype(object))
1342
+ assert_equal(a[0], np.ones(2))
1343
+ assert_equal(a[1], np.array(2))
1344
+
1345
+ a = np.array(((1,), np.array(1)))
1346
+ assert_equal(a.shape, (2,))
1347
+ assert_equal(a.dtype, np.dtype(object))
1348
+ assert_equal(a[0], (1,))
1349
+ assert_equal(a[1], np.array(1))
1350
+
1351
+ def test_array_from_sequence_scalar_array2(self):
1352
+ # Ticket #1081: weird array with strange input...
1353
+ t = np.array([np.array([]), np.array(0, object)])
1354
+ assert_equal(t.shape, (2,))
1355
+ assert_equal(t.dtype, np.dtype(object))
1356
+
1357
+ def test_array_too_big(self):
1358
+ # Ticket #1080.
1359
+ assert_raises(ValueError, np.zeros, [975]*7, np.int8)
1360
+ assert_raises(ValueError, np.zeros, [26244]*5, np.int8)
1361
+
1362
+ def test_dtype_keyerrors_(self):
1363
+ # Ticket #1106.
1364
+ dt = np.dtype([('f1', np.uint)])
1365
+ assert_raises(KeyError, dt.__getitem__, "f2")
1366
+ assert_raises(IndexError, dt.__getitem__, 1)
1367
+ assert_raises(ValueError, dt.__getitem__, 0.0)
1368
+
1369
+ def test_lexsort_buffer_length(self):
1370
+ # Ticket #1217, don't segfault.
1371
+ a = np.ones(100, dtype=np.int8)
1372
+ b = np.ones(100, dtype=np.int32)
1373
+ i = np.lexsort((a[::-1], b))
1374
+ assert_equal(i, np.arange(100, dtype=np.int))
1375
+
1376
+ def test_object_array_to_fixed_string(self):
1377
+ # Ticket #1235.
1378
+ a = np.array(['abcdefgh', 'ijklmnop'], dtype=np.object_)
1379
+ b = np.array(a, dtype=(np.str_, 8))
1380
+ assert_equal(a, b)
1381
+ c = np.array(a, dtype=(np.str_, 5))
1382
+ assert_equal(c, np.array(['abcde', 'ijklm']))
1383
+ d = np.array(a, dtype=(np.str_, 12))
1384
+ assert_equal(a, d)
1385
+ e = np.empty((2, ), dtype=(np.str_, 8))
1386
+ e[:] = a[:]
1387
+ assert_equal(a, e)
1388
+
1389
+ def test_unicode_to_string_cast(self):
1390
+ # Ticket #1240.
1391
+ a = np.array([[sixu('abc'), sixu('\u03a3')],
1392
+ [sixu('asdf'), sixu('erw')]],
1393
+ dtype='U')
1394
+ self.assertRaises(UnicodeEncodeError, np.array, a, 'S4')
1395
+
1396
+ def test_mixed_string_unicode_array_creation(self):
1397
+ a = np.array(['1234', sixu('123')])
1398
+ assert_(a.itemsize == 16)
1399
+ a = np.array([sixu('123'), '1234'])
1400
+ assert_(a.itemsize == 16)
1401
+ a = np.array(['1234', sixu('123'), '12345'])
1402
+ assert_(a.itemsize == 20)
1403
+ a = np.array([sixu('123'), '1234', sixu('12345')])
1404
+ assert_(a.itemsize == 20)
1405
+ a = np.array([sixu('123'), '1234', sixu('1234')])
1406
+ assert_(a.itemsize == 16)
1407
+
1408
+ def test_misaligned_objects_segfault(self):
1409
+ # Ticket #1198 and #1267
1410
+ a1 = np.zeros((10,), dtype='O,c')
1411
+ a2 = np.array(['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j'], 'S10')
1412
+ a1['f0'] = a2
1413
+ repr(a1)
1414
+ np.argmax(a1['f0'])
1415
+ a1['f0'][1] = "FOO"
1416
+ a1['f0'] = "FOO"
1417
+ np.array(a1['f0'], dtype='S')
1418
+ np.nonzero(a1['f0'])
1419
+ a1.sort()
1420
+ copy.deepcopy(a1)
1421
+
1422
+ def test_misaligned_scalars_segfault(self):
1423
+ # Ticket #1267
1424
+ s1 = np.array(('a', 'Foo'), dtype='c,O')
1425
+ s2 = np.array(('b', 'Bar'), dtype='c,O')
1426
+ s1['f1'] = s2['f1']
1427
+ s1['f1'] = 'Baz'
1428
+
1429
+ def test_misaligned_dot_product_objects(self):
1430
+ # Ticket #1267
1431
+ # This didn't require a fix, but it's worth testing anyway, because
1432
+ # it may fail if .dot stops enforcing the arrays to be BEHAVED
1433
+ a = np.array([[(1, 'a'), (0, 'a')], [(0, 'a'), (1, 'a')]], dtype='O,c')
1434
+ b = np.array([[(4, 'a'), (1, 'a')], [(2, 'a'), (2, 'a')]], dtype='O,c')
1435
+ np.dot(a['f0'], b['f0'])
1436
+
1437
+ def test_byteswap_complex_scalar(self):
1438
+ # Ticket #1259 and gh-441
1439
+ for dtype in [np.dtype('<'+t) for t in np.typecodes['Complex']]:
1440
+ z = np.array([2.2-1.1j], dtype)
1441
+ x = z[0] # always native-endian
1442
+ y = x.byteswap()
1443
+ if x.dtype.byteorder == z.dtype.byteorder:
1444
+ # little-endian machine
1445
+ assert_equal(x, np.fromstring(y.tobytes(), dtype=dtype.newbyteorder()))
1446
+ else:
1447
+ # big-endian machine
1448
+ assert_equal(x, np.fromstring(y.tobytes(), dtype=dtype))
1449
+ # double check real and imaginary parts:
1450
+ assert_equal(x.real, y.real.byteswap())
1451
+ assert_equal(x.imag, y.imag.byteswap())
1452
+
1453
+ def test_structured_arrays_with_objects1(self):
1454
+ # Ticket #1299
1455
+ stra = 'aaaa'
1456
+ strb = 'bbbb'
1457
+ x = np.array([[(0, stra), (1, strb)]], 'i8,O')
1458
+ x[x.nonzero()] = x.ravel()[:1]
1459
+ assert_(x[0, 1] == x[0, 0])
1460
+
1461
+ def test_structured_arrays_with_objects2(self):
1462
+ # Ticket #1299 second test
1463
+ stra = 'aaaa'
1464
+ strb = 'bbbb'
1465
+ numb = sys.getrefcount(strb)
1466
+ numa = sys.getrefcount(stra)
1467
+ x = np.array([[(0, stra), (1, strb)]], 'i8,O')
1468
+ x[x.nonzero()] = x.ravel()[:1]
1469
+ assert_(sys.getrefcount(strb) == numb)
1470
+ assert_(sys.getrefcount(stra) == numa + 2)
1471
+
1472
+ def test_duplicate_title_and_name(self):
1473
+ # Ticket #1254
1474
+ dtspec = [(('a', 'a'), 'i'), ('b', 'i')]
1475
+ self.assertRaises(ValueError, np.dtype, dtspec)
1476
+
1477
+ def test_signed_integer_division_overflow(self):
1478
+ # Ticket #1317.
1479
+ def test_type(t):
1480
+ min = np.array([np.iinfo(t).min])
1481
+ min //= -1
1482
+
1483
+ with np.errstate(divide="ignore"):
1484
+ for t in (np.int8, np.int16, np.int32, np.int64, np.int, np.long):
1485
+ test_type(t)
1486
+
1487
+ def test_buffer_hashlib(self):
1488
+ try:
1489
+ from hashlib import md5
1490
+ except ImportError:
1491
+ from md5 import new as md5
1492
+
1493
+ x = np.array([1, 2, 3], dtype=np.dtype('<i4'))
1494
+ assert_equal(md5(x).hexdigest(), '2a1dd1e1e59d0a384c26951e316cd7e6')
1495
+
1496
+ def test_0d_string_scalar(self):
1497
+ # Bug #1436; the following should succeed
1498
+ np.asarray('x', '>c')
1499
+
1500
+ def test_log1p_compiler_shenanigans(self):
1501
+ # Check if log1p is behaving on 32 bit intel systems.
1502
+ assert_(np.isfinite(np.log1p(np.exp2(-53))))
1503
+
1504
+ def test_fromiter_comparison(self, level=rlevel):
1505
+ a = np.fromiter(list(range(10)), dtype='b')
1506
+ b = np.fromiter(list(range(10)), dtype='B')
1507
+ assert_(np.alltrue(a == np.array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])))
1508
+ assert_(np.alltrue(b == np.array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])))
1509
+
1510
+ def test_fromstring_crash(self):
1511
+ # Ticket #1345: the following should not cause a crash
1512
+ np.fromstring(asbytes('aa, aa, 1.0'), sep=',')
1513
+
1514
+ def test_ticket_1539(self):
1515
+ dtypes = [x for x in np.typeDict.values()
1516
+ if (issubclass(x, np.number)
1517
+ and not issubclass(x, np.timedelta64))]
1518
+ a = np.array([], dtypes[0])
1519
+ failures = []
1520
+ # ignore complex warnings
1521
+ with warnings.catch_warnings():
1522
+ warnings.simplefilter('ignore', np.ComplexWarning)
1523
+ for x in dtypes:
1524
+ b = a.astype(x)
1525
+ for y in dtypes:
1526
+ c = a.astype(y)
1527
+ try:
1528
+ np.dot(b, c)
1529
+ except TypeError:
1530
+ failures.append((x, y))
1531
+ if failures:
1532
+ raise AssertionError("Failures: %r" % failures)
1533
+
1534
+ def test_ticket_1538(self):
1535
+ x = np.finfo(np.float32)
1536
+ for name in 'eps epsneg max min resolution tiny'.split():
1537
+ assert_equal(type(getattr(x, name)), np.float32,
1538
+ err_msg=name)
1539
+
1540
+ def test_ticket_1434(self):
1541
+ # Check that the out= argument in var and std has an effect
1542
+ data = np.array(((1, 2, 3), (4, 5, 6), (7, 8, 9)))
1543
+ out = np.zeros((3,))
1544
+
1545
+ ret = data.var(axis=1, out=out)
1546
+ assert_(ret is out)
1547
+ assert_array_equal(ret, data.var(axis=1))
1548
+
1549
+ ret = data.std(axis=1, out=out)
1550
+ assert_(ret is out)
1551
+ assert_array_equal(ret, data.std(axis=1))
1552
+
1553
+ def test_complex_nan_maximum(self):
1554
+ cnan = complex(0, np.nan)
1555
+ assert_equal(np.maximum(1, cnan), cnan)
1556
+
1557
+ def test_subclass_int_tuple_assignment(self):
1558
+ # ticket #1563
1559
+ class Subclass(np.ndarray):
1560
+ def __new__(cls, i):
1561
+ return np.ones((i,)).view(cls)
1562
+
1563
+ x = Subclass(5)
1564
+ x[(0,)] = 2 # shouldn't raise an exception
1565
+ assert_equal(x[0], 2)
1566
+
1567
+ def test_ufunc_no_unnecessary_views(self):
1568
+ # ticket #1548
1569
+ class Subclass(np.ndarray):
1570
+ pass
1571
+ x = np.array([1, 2, 3]).view(Subclass)
1572
+ y = np.add(x, x, x)
1573
+ assert_equal(id(x), id(y))
1574
+
1575
+ def test_take_refcount(self):
1576
+ # ticket #939
1577
+ a = np.arange(16, dtype=np.float)
1578
+ a.shape = (4, 4)
1579
+ lut = np.ones((5 + 3, 4), np.float)
1580
+ rgba = np.empty(shape=a.shape + (4,), dtype=lut.dtype)
1581
+ c1 = sys.getrefcount(rgba)
1582
+ try:
1583
+ lut.take(a, axis=0, mode='clip', out=rgba)
1584
+ except TypeError:
1585
+ pass
1586
+ c2 = sys.getrefcount(rgba)
1587
+ assert_equal(c1, c2)
1588
+
1589
+ def test_fromfile_tofile_seeks(self):
1590
+ # On Python 3, tofile/fromfile used to get (#1610) the Python
1591
+ # file handle out of sync
1592
+ f0 = tempfile.NamedTemporaryFile()
1593
+ f = f0.file
1594
+ f.write(np.arange(255, dtype='u1').tobytes())
1595
+
1596
+ f.seek(20)
1597
+ ret = np.fromfile(f, count=4, dtype='u1')
1598
+ assert_equal(ret, np.array([20, 21, 22, 23], dtype='u1'))
1599
+ assert_equal(f.tell(), 24)
1600
+
1601
+ f.seek(40)
1602
+ np.array([1, 2, 3], dtype='u1').tofile(f)
1603
+ assert_equal(f.tell(), 43)
1604
+
1605
+ f.seek(40)
1606
+ data = f.read(3)
1607
+ assert_equal(data, asbytes("\x01\x02\x03"))
1608
+
1609
+ f.seek(80)
1610
+ f.read(4)
1611
+ data = np.fromfile(f, dtype='u1', count=4)
1612
+ assert_equal(data, np.array([84, 85, 86, 87], dtype='u1'))
1613
+
1614
+ f.close()
1615
+
1616
+ def test_complex_scalar_warning(self):
1617
+ for tp in [np.csingle, np.cdouble, np.clongdouble]:
1618
+ x = tp(1+2j)
1619
+ assert_warns(np.ComplexWarning, float, x)
1620
+ with warnings.catch_warnings():
1621
+ warnings.simplefilter('ignore')
1622
+ assert_equal(float(x), float(x.real))
1623
+
1624
+ def test_complex_scalar_complex_cast(self):
1625
+ for tp in [np.csingle, np.cdouble, np.clongdouble]:
1626
+ x = tp(1+2j)
1627
+ assert_equal(complex(x), 1+2j)
1628
+
1629
+ def test_complex_boolean_cast(self):
1630
+ # Ticket #2218
1631
+ for tp in [np.csingle, np.cdouble, np.clongdouble]:
1632
+ x = np.array([0, 0+0.5j, 0.5+0j], dtype=tp)
1633
+ assert_equal(x.astype(bool), np.array([0, 1, 1], dtype=bool))
1634
+ assert_(np.any(x))
1635
+ assert_(np.all(x[1:]))
1636
+
1637
+ def test_uint_int_conversion(self):
1638
+ x = 2**64 - 1
1639
+ assert_equal(int(np.uint64(x)), x)
1640
+
1641
+ def test_duplicate_field_names_assign(self):
1642
+ ra = np.fromiter(((i*3, i*2) for i in range(10)), dtype='i8,f8')
1643
+ ra.dtype.names = ('f1', 'f2')
1644
+ repr(ra) # should not cause a segmentation fault
1645
+ assert_raises(ValueError, setattr, ra.dtype, 'names', ('f1', 'f1'))
1646
+
1647
+ def test_eq_string_and_object_array(self):
1648
+ # From e-mail thread "__eq__ with str and object" (Keith Goodman)
1649
+ a1 = np.array(['a', 'b'], dtype=object)
1650
+ a2 = np.array(['a', 'c'])
1651
+ assert_array_equal(a1 == a2, [True, False])
1652
+ assert_array_equal(a2 == a1, [True, False])
1653
+
1654
+ def test_nonzero_byteswap(self):
1655
+ a = np.array([0x80000000, 0x00000080, 0], dtype=np.uint32)
1656
+ a.dtype = np.float32
1657
+ assert_equal(a.nonzero()[0], [1])
1658
+ a = a.byteswap().newbyteorder()
1659
+ assert_equal(a.nonzero()[0], [1]) # [0] if nonzero() ignores swap
1660
+
1661
+ def test_find_common_type_boolean(self):
1662
+ # Ticket #1695
1663
+ assert_(np.find_common_type([], ['?', '?']) == '?')
1664
+
1665
+ def test_empty_mul(self):
1666
+ a = np.array([1.])
1667
+ a[1:1] *= 2
1668
+ assert_equal(a, [1.])
1669
+
1670
+ def test_array_side_effect(self):
1671
+ # The second use of itemsize was throwing an exception because in
1672
+ # ctors.c, discover_itemsize was calling PyObject_Length without
1673
+ # checking the return code. This failed to get the length of the
1674
+ # number 2, and the exception hung around until something checked
1675
+ # PyErr_Occurred() and returned an error.
1676
+ assert_equal(np.dtype('S10').itemsize, 10)
1677
+ np.array([['abc', 2], ['long ', '0123456789']], dtype=np.string_)
1678
+ assert_equal(np.dtype('S10').itemsize, 10)
1679
+
1680
+ def test_any_float(self):
1681
+ # all and any for floats
1682
+ a = np.array([0.1, 0.9])
1683
+ assert_(np.any(a))
1684
+ assert_(np.all(a))
1685
+
1686
+ def test_large_float_sum(self):
1687
+ a = np.arange(10000, dtype='f')
1688
+ assert_equal(a.sum(dtype='d'), a.astype('d').sum())
1689
+
1690
+ def test_ufunc_casting_out(self):
1691
+ a = np.array(1.0, dtype=np.float32)
1692
+ b = np.array(1.0, dtype=np.float64)
1693
+ c = np.array(1.0, dtype=np.float32)
1694
+ np.add(a, b, out=c)
1695
+ assert_equal(c, 2.0)
1696
+
1697
+ def test_array_scalar_contiguous(self):
1698
+ # Array scalars are both C and Fortran contiguous
1699
+ assert_(np.array(1.0).flags.c_contiguous)
1700
+ assert_(np.array(1.0).flags.f_contiguous)
1701
+ assert_(np.array(np.float32(1.0)).flags.c_contiguous)
1702
+ assert_(np.array(np.float32(1.0)).flags.f_contiguous)
1703
+
1704
+ def test_squeeze_contiguous(self):
1705
+ # Similar to GitHub issue #387
1706
+ a = np.zeros((1, 2)).squeeze()
1707
+ b = np.zeros((2, 2, 2), order='F')[:,:, ::2].squeeze()
1708
+ assert_(a.flags.c_contiguous)
1709
+ assert_(a.flags.f_contiguous)
1710
+ assert_(b.flags.f_contiguous)
1711
+
1712
+ def test_reduce_contiguous(self):
1713
+ # GitHub issue #387
1714
+ a = np.add.reduce(np.zeros((2, 1, 2)), (0, 1))
1715
+ b = np.add.reduce(np.zeros((2, 1, 2)), 1)
1716
+ assert_(a.flags.c_contiguous)
1717
+ assert_(a.flags.f_contiguous)
1718
+ assert_(b.flags.c_contiguous)
1719
+
1720
+ def test_object_array_self_reference(self):
1721
+ # Object arrays with references to themselves can cause problems
1722
+ a = np.array(0, dtype=object)
1723
+ a[()] = a
1724
+ assert_raises(TypeError, int, a)
1725
+ assert_raises(TypeError, long, a)
1726
+ assert_raises(TypeError, float, a)
1727
+ assert_raises(TypeError, oct, a)
1728
+ assert_raises(TypeError, hex, a)
1729
+
1730
+ # Test the same for a circular reference.
1731
+ b = np.array(a, dtype=object)
1732
+ a[()] = b
1733
+ assert_raises(TypeError, int, a)
1734
+ # Numpy has no tp_traverse currently, so circular references
1735
+ # cannot be detected. So resolve it:
1736
+ a[()] = 0
1737
+
1738
+ # This was causing a to become like the above
1739
+ a = np.array(0, dtype=object)
1740
+ a[...] += 1
1741
+ assert_equal(a, 1)
1742
+
1743
+ def test_object_array_self_copy(self):
1744
+ # An object array being copied into itself DECREF'ed before INCREF'ing
1745
+ # causing segmentation faults (gh-3787)
1746
+ a = np.array(object(), dtype=object)
1747
+ np.copyto(a, a)
1748
+ assert_equal(sys.getrefcount(a[()]), 2)
1749
+ a[()].__class__ # will segfault if object was deleted
1750
+
1751
+ def test_zerosize_accumulate(self):
1752
+ "Ticket #1733"
1753
+ x = np.array([[42, 0]], dtype=np.uint32)
1754
+ assert_equal(np.add.accumulate(x[:-1, 0]), [])
1755
+
1756
+ def test_objectarray_setfield(self):
1757
+ # Setfield should not overwrite Object fields with non-Object data
1758
+ x = np.array([1, 2, 3], dtype=object)
1759
+ assert_raises(TypeError, x.setfield, 4, np.int32, 0)
1760
+
1761
+ def test_setting_rank0_string(self):
1762
+ "Ticket #1736"
1763
+ s1 = asbytes("hello1")
1764
+ s2 = asbytes("hello2")
1765
+ a = np.zeros((), dtype="S10")
1766
+ a[()] = s1
1767
+ assert_equal(a, np.array(s1))
1768
+ a[()] = np.array(s2)
1769
+ assert_equal(a, np.array(s2))
1770
+
1771
+ a = np.zeros((), dtype='f4')
1772
+ a[()] = 3
1773
+ assert_equal(a, np.array(3))
1774
+ a[()] = np.array(4)
1775
+ assert_equal(a, np.array(4))
1776
+
1777
+ def test_string_astype(self):
1778
+ "Ticket #1748"
1779
+ s1 = asbytes('black')
1780
+ s2 = asbytes('white')
1781
+ s3 = asbytes('other')
1782
+ a = np.array([[s1], [s2], [s3]])
1783
+ assert_equal(a.dtype, np.dtype('S5'))
1784
+ b = a.astype(np.dtype('S0'))
1785
+ assert_equal(b.dtype, np.dtype('S5'))
1786
+
1787
+ def test_ticket_1756(self):
1788
+ # Ticket #1756
1789
+ s = asbytes('0123456789abcdef')
1790
+ a = np.array([s]*5)
1791
+ for i in range(1, 17):
1792
+ a1 = np.array(a, "|S%d" % i)
1793
+ a2 = np.array([s[:i]]*5)
1794
+ assert_equal(a1, a2)
1795
+
1796
+ def test_fields_strides(self):
1797
+ "Ticket #1760"
1798
+ r = np.fromstring('abcdefghijklmnop'*4*3, dtype='i4,(2,3)u2')
1799
+ assert_equal(r[0:3:2]['f1'], r['f1'][0:3:2])
1800
+ assert_equal(r[0:3:2]['f1'][0], r[0:3:2][0]['f1'])
1801
+ assert_equal(r[0:3:2]['f1'][0][()], r[0:3:2][0]['f1'][()])
1802
+ assert_equal(r[0:3:2]['f1'][0].strides, r[0:3:2][0]['f1'].strides)
1803
+
1804
+ def test_alignment_update(self):
1805
+ # Check that alignment flag is updated on stride setting
1806
+ a = np.arange(10)
1807
+ assert_(a.flags.aligned)
1808
+ a.strides = 3
1809
+ assert_(not a.flags.aligned)
1810
+
1811
+ def test_ticket_1770(self):
1812
+ "Should not segfault on python 3k"
1813
+ import numpy as np
1814
+ try:
1815
+ a = np.zeros((1,), dtype=[('f1', 'f')])
1816
+ a['f1'] = 1
1817
+ a['f2'] = 1
1818
+ except ValueError:
1819
+ pass
1820
+ except:
1821
+ raise AssertionError
1822
+
1823
+ def test_ticket_1608(self):
1824
+ "x.flat shouldn't modify data"
1825
+ x = np.array([[1, 2], [3, 4]]).T
1826
+ np.array(x.flat)
1827
+ assert_equal(x, [[1, 3], [2, 4]])
1828
+
1829
+ def test_pickle_string_overwrite(self):
1830
+ import re
1831
+
1832
+ data = np.array([1], dtype='b')
1833
+ blob = pickle.dumps(data, protocol=1)
1834
+ data = pickle.loads(blob)
1835
+
1836
+ # Check that loads does not clobber interned strings
1837
+ s = re.sub("a(.)", "\x01\\1", "a_")
1838
+ assert_equal(s[0], "\x01")
1839
+ data[0] = 0xbb
1840
+ s = re.sub("a(.)", "\x01\\1", "a_")
1841
+ assert_equal(s[0], "\x01")
1842
+
1843
+ def test_pickle_bytes_overwrite(self):
1844
+ if sys.version_info[0] >= 3:
1845
+ data = np.array([1], dtype='b')
1846
+ data = pickle.loads(pickle.dumps(data))
1847
+ data[0] = 0xdd
1848
+ bytestring = "\x01 ".encode('ascii')
1849
+ assert_equal(bytestring[0:1], '\x01'.encode('ascii'))
1850
+
1851
+ def test_pickle_py2_array_latin1_hack(self):
1852
+ # Check that unpickling hacks in Py3 that support
1853
+ # encoding='latin1' work correctly.
1854
+
1855
+ # Python2 output for pickle.dumps(numpy.array([129], dtype='b'))
1856
+ data = asbytes("cnumpy.core.multiarray\n_reconstruct\np0\n(cnumpy\nndarray\np1\n(I0\n"
1857
+ "tp2\nS'b'\np3\ntp4\nRp5\n(I1\n(I1\ntp6\ncnumpy\ndtype\np7\n(S'i1'\np8\n"
1858
+ "I0\nI1\ntp9\nRp10\n(I3\nS'|'\np11\nNNNI-1\nI-1\nI0\ntp12\nbI00\nS'\\x81'\n"
1859
+ "p13\ntp14\nb.")
1860
+ if sys.version_info[0] >= 3:
1861
+ # This should work:
1862
+ result = pickle.loads(data, encoding='latin1')
1863
+ assert_array_equal(result, np.array([129], dtype='b'))
1864
+ # Should not segfault:
1865
+ assert_raises(Exception, pickle.loads, data, encoding='koi8-r')
1866
+
1867
+ def test_pickle_py2_scalar_latin1_hack(self):
1868
+ # Check that scalar unpickling hack in Py3 that supports
1869
+ # encoding='latin1' work correctly.
1870
+
1871
+ # Python2 output for pickle.dumps(...)
1872
+ datas = [
1873
+ # (original, python2_pickle, koi8r_validity)
1874
+ (np.unicode_('\u6bd2'),
1875
+ asbytes("cnumpy.core.multiarray\nscalar\np0\n(cnumpy\ndtype\np1\n"
1876
+ "(S'U1'\np2\nI0\nI1\ntp3\nRp4\n(I3\nS'<'\np5\nNNNI4\nI4\nI0\n"
1877
+ "tp6\nbS'\\xd2k\\x00\\x00'\np7\ntp8\nRp9\n."),
1878
+ 'invalid'),
1879
+
1880
+ (np.float64(9e123),
1881
+ asbytes("cnumpy.core.multiarray\nscalar\np0\n(cnumpy\ndtype\np1\n(S'f8'\n"
1882
+ "p2\nI0\nI1\ntp3\nRp4\n(I3\nS'<'\np5\nNNNI-1\nI-1\nI0\ntp6\n"
1883
+ "bS'O\\x81\\xb7Z\\xaa:\\xabY'\np7\ntp8\nRp9\n."),
1884
+ 'invalid'),
1885
+
1886
+ (np.bytes_(asbytes('\x9c')), # different 8-bit code point in KOI8-R vs latin1
1887
+ asbytes("cnumpy.core.multiarray\nscalar\np0\n(cnumpy\ndtype\np1\n(S'S1'\np2\n"
1888
+ "I0\nI1\ntp3\nRp4\n(I3\nS'|'\np5\nNNNI1\nI1\nI0\ntp6\nbS'\\x9c'\np7\n"
1889
+ "tp8\nRp9\n."),
1890
+ 'different'),
1891
+ ]
1892
+ if sys.version_info[0] >= 3:
1893
+ for original, data, koi8r_validity in datas:
1894
+ result = pickle.loads(data, encoding='latin1')
1895
+ assert_equal(result, original)
1896
+
1897
+ # Decoding under non-latin1 encoding (e.g.) KOI8-R can
1898
+ # produce bad results, but should not segfault.
1899
+ if koi8r_validity == 'different':
1900
+ # Unicode code points happen to lie within latin1,
1901
+ # but are different in koi8-r, resulting to silent
1902
+ # bogus results
1903
+ result = pickle.loads(data, encoding='koi8-r')
1904
+ assert_(result != original)
1905
+ elif koi8r_validity == 'invalid':
1906
+ # Unicode code points outside latin1, so results
1907
+ # to an encoding exception
1908
+ assert_raises(ValueError, pickle.loads, data, encoding='koi8-r')
1909
+ else:
1910
+ raise ValueError(koi8r_validity)
1911
+
1912
+ def test_structured_type_to_object(self):
1913
+ a_rec = np.array([(0, 1), (3, 2)], dtype='i4,i8')
1914
+ a_obj = np.empty((2,), dtype=object)
1915
+ a_obj[0] = (0, 1)
1916
+ a_obj[1] = (3, 2)
1917
+ # astype records -> object
1918
+ assert_equal(a_rec.astype(object), a_obj)
1919
+ # '=' records -> object
1920
+ b = np.empty_like(a_obj)
1921
+ b[...] = a_rec
1922
+ assert_equal(b, a_obj)
1923
+ # '=' object -> records
1924
+ b = np.empty_like(a_rec)
1925
+ b[...] = a_obj
1926
+ assert_equal(b, a_rec)
1927
+
1928
+ def test_assign_obj_listoflists(self):
1929
+ # Ticket # 1870
1930
+ # The inner list should get assigned to the object elements
1931
+ a = np.zeros(4, dtype=object)
1932
+ b = a.copy()
1933
+ a[0] = [1]
1934
+ a[1] = [2]
1935
+ a[2] = [3]
1936
+ a[3] = [4]
1937
+ b[...] = [[1], [2], [3], [4]]
1938
+ assert_equal(a, b)
1939
+ # The first dimension should get broadcast
1940
+ a = np.zeros((2, 2), dtype=object)
1941
+ a[...] = [[1, 2]]
1942
+ assert_equal(a, [[1, 2], [1, 2]])
1943
+
1944
+ def test_memoryleak(self):
1945
+ # Ticket #1917 - ensure that array data doesn't leak
1946
+ for i in range(1000):
1947
+ # 100MB times 1000 would give 100GB of memory usage if it leaks
1948
+ a = np.empty((100000000,), dtype='i1')
1949
+ del a
1950
+
1951
+ def test_ufunc_reduce_memoryleak(self):
1952
+ a = np.arange(6)
1953
+ acnt = sys.getrefcount(a)
1954
+ np.add.reduce(a)
1955
+ assert_equal(sys.getrefcount(a), acnt)
1956
+
1957
+ def test_search_sorted_invalid_arguments(self):
1958
+ # Ticket #2021, should not segfault.
1959
+ x = np.arange(0, 4, dtype='datetime64[D]')
1960
+ assert_raises(TypeError, x.searchsorted, 1)
1961
+
1962
+ def test_string_truncation(self):
1963
+ # Ticket #1990 - Data can be truncated in creation of an array from a
1964
+ # mixed sequence of numeric values and strings
1965
+ for val in [True, 1234, 123.4, complex(1, 234)]:
1966
+ for tostr in [asunicode, asbytes]:
1967
+ b = np.array([val, tostr('xx')])
1968
+ assert_equal(tostr(b[0]), tostr(val))
1969
+ b = np.array([tostr('xx'), val])
1970
+ assert_equal(tostr(b[1]), tostr(val))
1971
+
1972
+ # test also with longer strings
1973
+ b = np.array([val, tostr('xxxxxxxxxx')])
1974
+ assert_equal(tostr(b[0]), tostr(val))
1975
+ b = np.array([tostr('xxxxxxxxxx'), val])
1976
+ assert_equal(tostr(b[1]), tostr(val))
1977
+
1978
+ def test_string_truncation_ucs2(self):
1979
+ # Ticket #2081. Python compiled with two byte unicode
1980
+ # can lead to truncation if itemsize is not properly
1981
+ # adjusted for Numpy's four byte unicode.
1982
+ if sys.version_info[0] >= 3:
1983
+ a = np.array(['abcd'])
1984
+ else:
1985
+ a = np.array([sixu('abcd')])
1986
+ assert_equal(a.dtype.itemsize, 16)
1987
+
1988
+ def test_unique_stable(self):
1989
+ # Ticket #2063 must always choose stable sort for argsort to
1990
+ # get consistent results
1991
+ v = np.array(([0]*5 + [1]*6 + [2]*6)*4)
1992
+ res = np.unique(v, return_index=True)
1993
+ tgt = (np.array([0, 1, 2]), np.array([ 0, 5, 11]))
1994
+ assert_equal(res, tgt)
1995
+
1996
+ def test_unicode_alloc_dealloc_match(self):
1997
+ # Ticket #1578, the mismatch only showed up when running
1998
+ # python-debug for python versions >= 2.7, and then as
1999
+ # a core dump and error message.
2000
+ a = np.array(['abc'], dtype=np.unicode)[0]
2001
+ del a
2002
+
2003
+ def test_refcount_error_in_clip(self):
2004
+ # Ticket #1588
2005
+ a = np.zeros((2,), dtype='>i2').clip(min=0)
2006
+ x = a + a
2007
+ # This used to segfault:
2008
+ y = str(x)
2009
+ # Check the final string:
2010
+ assert_(y == "[0 0]")
2011
+
2012
+ def test_searchsorted_wrong_dtype(self):
2013
+ # Ticket #2189, it used to segfault, so we check that it raises the
2014
+ # proper exception.
2015
+ a = np.array([('a', 1)], dtype='S1, int')
2016
+ assert_raises(TypeError, np.searchsorted, a, 1.2)
2017
+ # Ticket #2066, similar problem:
2018
+ dtype = np.format_parser(['i4', 'i4'], [], [])
2019
+ a = np.recarray((2, ), dtype)
2020
+ assert_raises(TypeError, np.searchsorted, a, 1)
2021
+
2022
+ def test_complex64_alignment(self):
2023
+ # Issue gh-2668 (trac 2076), segfault on sparc due to misalignment
2024
+ dtt = np.complex64
2025
+ arr = np.arange(10, dtype=dtt)
2026
+ # 2D array
2027
+ arr2 = np.reshape(arr, (2, 5))
2028
+ # Fortran write followed by (C or F) read caused bus error
2029
+ data_str = arr2.tobytes('F')
2030
+ data_back = np.ndarray(arr2.shape,
2031
+ arr2.dtype,
2032
+ buffer=data_str,
2033
+ order='F')
2034
+ assert_array_equal(arr2, data_back)
2035
+
2036
+ def test_structured_count_nonzero(self):
2037
+ arr = np.array([0, 1]).astype('i4, (2)i4')[:1]
2038
+ count = np.count_nonzero(arr)
2039
+ assert_equal(count, 0)
2040
+
2041
+ def test_copymodule_preserves_f_contiguity(self):
2042
+ a = np.empty((2, 2), order='F')
2043
+ b = copy.copy(a)
2044
+ c = copy.deepcopy(a)
2045
+ assert_(b.flags.fortran)
2046
+ assert_(b.flags.f_contiguous)
2047
+ assert_(c.flags.fortran)
2048
+ assert_(c.flags.f_contiguous)
2049
+
2050
+ def test_fortran_order_buffer(self):
2051
+ import numpy as np
2052
+ a = np.array([['Hello', 'Foob']], dtype='U5', order='F')
2053
+ arr = np.ndarray(shape=[1, 2, 5], dtype='U1', buffer=a)
2054
+ arr2 = np.array([[[sixu('H'), sixu('e'), sixu('l'), sixu('l'), sixu('o')],
2055
+ [sixu('F'), sixu('o'), sixu('o'), sixu('b'), sixu('')]]])
2056
+ assert_array_equal(arr, arr2)
2057
+
2058
+ def test_assign_from_sequence_error(self):
2059
+ # Ticket #4024.
2060
+ arr = np.array([1, 2, 3])
2061
+ assert_raises(ValueError, arr.__setitem__, slice(None), [9, 9])
2062
+ arr.__setitem__(slice(None), [9])
2063
+ assert_equal(arr, [9, 9, 9])
2064
+
2065
+ def test_format_on_flex_array_element(self):
2066
+ # Ticket #4369.
2067
+ dt = np.dtype([('date', '<M8[D]'), ('val', '<f8')])
2068
+ arr = np.array([('2000-01-01', 1)], dt)
2069
+ formatted = '{0}'.format(arr[0])
2070
+ assert_equal(formatted, str(arr[0]))
2071
+
2072
+ def test_deepcopy_on_0d_array(self):
2073
+ # Ticket #3311.
2074
+ arr = np.array(3)
2075
+ arr_cp = copy.deepcopy(arr)
2076
+
2077
+ assert_equal(arr, arr_cp)
2078
+ assert_equal(arr.shape, arr_cp.shape)
2079
+ assert_equal(int(arr), int(arr_cp))
2080
+ self.assertTrue(arr is not arr_cp)
2081
+ self.assertTrue(isinstance(arr_cp, type(arr)))
2082
+
2083
+ def test_bool_subscript_crash(self):
2084
+ # gh-4494
2085
+ c = np.rec.array([(1, 2, 3), (4, 5, 6)])
2086
+ masked = c[np.array([True, False])]
2087
+ base = masked.base
2088
+ del masked, c
2089
+ base.dtype
2090
+
2091
+ def test_richcompare_crash(self):
2092
+ # gh-4613
2093
+ import operator as op
2094
+
2095
+ # dummy class where __array__ throws exception
2096
+ class Foo(object):
2097
+ __array_priority__ = 1002
2098
+
2099
+ def __array__(self,*args,**kwargs):
2100
+ raise Exception()
2101
+
2102
+ rhs = Foo()
2103
+ lhs = np.array(1)
2104
+ for f in [op.lt, op.le, op.gt, op.ge]:
2105
+ if sys.version_info[0] >= 3:
2106
+ assert_raises(TypeError, f, lhs, rhs)
2107
+ else:
2108
+ f(lhs, rhs)
2109
+ assert_(not op.eq(lhs, rhs))
2110
+ assert_(op.ne(lhs, rhs))
2111
+
2112
+ def test_richcompare_scalar_and_subclass(self):
2113
+ # gh-4709
2114
+ class Foo(np.ndarray):
2115
+ def __eq__(self, other):
2116
+ return "OK"
2117
+
2118
+ x = np.array([1,2,3]).view(Foo)
2119
+ assert_equal(10 == x, "OK")
2120
+ assert_equal(np.int32(10) == x, "OK")
2121
+ assert_equal(np.array([10]) == x, "OK")
2122
+
2123
+ def test_pickle_empty_string(self):
2124
+ # gh-3926
2125
+
2126
+ import pickle
2127
+ test_string = np.string_('')
2128
+ assert_equal(pickle.loads(pickle.dumps(test_string)), test_string)
2129
+
2130
+ def test_frompyfunc_many_args(self):
2131
+ # gh-5672
2132
+
2133
+ def passer(*args):
2134
+ pass
2135
+
2136
+ assert_raises(ValueError, np.frompyfunc, passer, 32, 1)
2137
+
2138
+ def test_repeat_broadcasting(self):
2139
+ # gh-5743
2140
+ a = np.arange(60).reshape(3, 4, 5)
2141
+ for axis in chain(range(-a.ndim, a.ndim), [None]):
2142
+ assert_equal(a.repeat(2, axis=axis), a.repeat([2], axis=axis))
2143
+
2144
+ def test_frompyfunc_nout_0(self):
2145
+ # gh-2014
2146
+
2147
+ def f(x):
2148
+ x[0], x[-1] = x[-1], x[0]
2149
+
2150
+ uf = np.frompyfunc(f, 1, 0)
2151
+ a = np.array([[1, 2, 3], [4, 5], [6, 7, 8, 9]])
2152
+ assert_equal(uf(a), ())
2153
+ assert_array_equal(a, [[3, 2, 1], [5, 4], [9, 7, 8, 6]])
2154
+
2155
+ def test_leak_in_structured_dtype_comparison(self):
2156
+ # gh-6250
2157
+ recordtype = np.dtype([('a', np.float64),
2158
+ ('b', np.int32),
2159
+ ('d', (np.str, 5))])
2160
+
2161
+ # Simple case
2162
+ a = np.zeros(2, dtype=recordtype)
2163
+ for i in range(100):
2164
+ a == a
2165
+ assert_(sys.getrefcount(a) < 10)
2166
+
2167
+ # The case in the bug report.
2168
+ before = sys.getrefcount(a)
2169
+ u, v = a[0], a[1]
2170
+ u == v
2171
+ del u, v
2172
+ gc.collect()
2173
+ after = sys.getrefcount(a)
2174
+ assert_equal(before, after)
2175
+
2176
+ if __name__ == "__main__":
2177
+ run_module_suite()