numpy 1.9.3__zip → 1.10.0__zip

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1590) hide show
  1. numpy-1.10.0.post2/INSTALL.txt +200 -0
  2. numpy-1.10.0.post2/LICENSE.txt +30 -0
  3. numpy-1.10.0.post2/MANIFEST.in +31 -0
  4. numpy-1.10.0.post2/PKG-INFO +47 -0
  5. numpy-1.10.0.post2/cnew.txt +117 -0
  6. numpy-1.10.0.post2/cold.txt +44 -0
  7. numpy-1.10.0.post2/committers.txt +160 -0
  8. numpy-1.10.0.post2/cpre.txt +283 -0
  9. numpy-1.10.0.post2/crel.txt +161 -0
  10. numpy-1.10.0.post2/doc/release/1.10.0-notes.rst +439 -0
  11. numpy-1.10.0.post2/doc/source/conf.py +331 -0
  12. numpy-1.10.0.post2/doc/source/dev/development_environment.rst +211 -0
  13. numpy-1.10.0.post2/doc/source/dev/gitwash/development_workflow.rst +534 -0
  14. numpy-1.10.0.post2/doc/source/dev/gitwash/git_links.inc +95 -0
  15. numpy-1.10.0.post2/doc/source/dev/gitwash/index.rst +14 -0
  16. numpy-1.10.0.post2/doc/source/dev/index.rst +11 -0
  17. numpy-1.10.0.post2/doc/source/reference/arrays.classes.rst +490 -0
  18. numpy-1.10.0.post2/doc/source/reference/arrays.dtypes.rst +536 -0
  19. numpy-1.10.0.post2/doc/source/reference/arrays.indexing.rst +549 -0
  20. numpy-1.10.0.post2/doc/source/reference/arrays.interface.rst +337 -0
  21. numpy-1.10.0.post2/doc/source/reference/arrays.ndarray.rst +622 -0
  22. numpy-1.10.0.post2/doc/source/reference/arrays.scalars.rst +291 -0
  23. numpy-1.10.0.post2/doc/source/reference/c-api.array.rst +3393 -0
  24. numpy-1.10.0.post2/doc/source/reference/c-api.config.rst +103 -0
  25. numpy-1.10.0.post2/doc/source/reference/c-api.coremath.rst +420 -0
  26. numpy-1.10.0.post2/doc/source/reference/c-api.dtype.rst +376 -0
  27. numpy-1.10.0.post2/doc/source/reference/c-api.generalized-ufuncs.rst +191 -0
  28. numpy-1.10.0.post2/doc/source/reference/c-api.iterator.rst +1300 -0
  29. numpy-1.10.0.post2/doc/source/reference/c-api.types-and-structures.rst +1240 -0
  30. numpy-1.10.0.post2/doc/source/reference/c-api.ufunc.rst +413 -0
  31. numpy-1.10.0.post2/doc/source/reference/index.rst +43 -0
  32. numpy-1.10.0.post2/doc/source/reference/internals.code-explanations.rst +615 -0
  33. numpy-1.10.0.post2/doc/source/reference/routines.array-manipulation.rst +115 -0
  34. numpy-1.10.0.post2/doc/source/reference/routines.io.rst +78 -0
  35. numpy-1.10.0.post2/doc/source/reference/routines.linalg.rst +91 -0
  36. numpy-1.10.0.post2/doc/source/reference/routines.ma.rst +407 -0
  37. numpy-1.10.0.post2/doc/source/reference/routines.sort.rst +41 -0
  38. numpy-1.10.0.post2/doc/source/reference/routines.statistics.rst +57 -0
  39. numpy-1.10.0.post2/doc/source/reference/swig.interface-file.rst +1066 -0
  40. numpy-1.10.0.post2/doc/source/reference/swig.testing.rst +167 -0
  41. numpy-1.10.0.post2/doc/source/reference/ufuncs.rst +666 -0
  42. numpy-1.10.0.post2/doc/source/release.rst +20 -0
  43. numpy-1.10.0.post2/doc/source/user/basics.io.genfromtxt.rst +531 -0
  44. numpy-1.10.0.post2/doc/source/user/basics.rec.rst +7 -0
  45. numpy-1.10.0.post2/doc/source/user/c-info.beyond-basics.rst +560 -0
  46. numpy-1.10.0.post2/doc/source/user/c-info.how-to-extend.rst +642 -0
  47. numpy-1.10.0.post2/doc/source/user/c-info.python-as-glue.rst +1177 -0
  48. numpy-1.10.0.post2/doc/source/user/c-info.ufunc-tutorial.rst +1211 -0
  49. numpy-1.10.0.post2/doc/source/user/install.rst +194 -0
  50. numpy-1.10.0.post2/numpy/__init__.py +227 -0
  51. numpy-1.10.0.post2/numpy/_build_utils/README +8 -0
  52. numpy-1.10.0.post2/numpy/_build_utils/apple_accelerate.py +21 -0
  53. numpy-1.10.0.post2/numpy/_build_utils/common.py +138 -0
  54. numpy-1.10.0.post2/numpy/_build_utils/src/apple_sgemv_fix.c +227 -0
  55. numpy-1.10.0.post2/numpy/_build_utils/waf.py +531 -0
  56. numpy-1.10.0.post2/numpy/_import_tools.py +353 -0
  57. numpy-1.10.0.post2/numpy/add_newdocs.py +7611 -0
  58. numpy-1.10.0.post2/numpy/compat/_inspect.py +194 -0
  59. numpy-1.10.0.post2/numpy/compat/py3k.py +88 -0
  60. numpy-1.10.0.post2/numpy/compat/setup.py +12 -0
  61. numpy-1.10.0.post2/numpy/core/__init__.py +89 -0
  62. numpy-1.10.0.post2/numpy/core/_internal.py +761 -0
  63. numpy-1.10.0.post2/numpy/core/_methods.py +133 -0
  64. numpy-1.10.0.post2/numpy/core/arrayprint.py +760 -0
  65. numpy-1.10.0.post2/numpy/core/code_generators/cversions.txt +34 -0
  66. numpy-1.10.0.post2/numpy/core/code_generators/generate_ufunc_api.py +219 -0
  67. numpy-1.10.0.post2/numpy/core/code_generators/generate_umath.py +1017 -0
  68. numpy-1.10.0.post2/numpy/core/code_generators/numpy_api.py +415 -0
  69. numpy-1.10.0.post2/numpy/core/code_generators/ufunc_docstrings.py +3442 -0
  70. numpy-1.10.0.post2/numpy/core/defchararray.py +2689 -0
  71. numpy-1.10.0.post2/numpy/core/fromnumeric.py +3089 -0
  72. numpy-1.10.0.post2/numpy/core/function_base.py +203 -0
  73. numpy-1.10.0.post2/numpy/core/getlimits.py +308 -0
  74. numpy-1.10.0.post2/numpy/core/include/numpy/ndarrayobject.h +246 -0
  75. numpy-1.10.0.post2/numpy/core/include/numpy/ndarraytypes.h +1797 -0
  76. numpy-1.10.0.post2/numpy/core/include/numpy/npy_3kcompat.h +448 -0
  77. numpy-1.10.0.post2/numpy/core/include/numpy/npy_common.h +1051 -0
  78. numpy-1.10.0.post2/numpy/core/include/numpy/npy_cpu.h +92 -0
  79. numpy-1.10.0.post2/numpy/core/include/numpy/npy_endian.h +61 -0
  80. numpy-1.10.0.post2/numpy/core/include/numpy/npy_math.h +525 -0
  81. numpy-1.10.0.post2/numpy/core/include/numpy/numpyconfig.h +36 -0
  82. numpy-1.10.0.post2/numpy/core/machar.py +342 -0
  83. numpy-1.10.0.post2/numpy/core/memmap.py +311 -0
  84. numpy-1.10.0.post2/numpy/core/numeric.py +2893 -0
  85. numpy-1.10.0.post2/numpy/core/numerictypes.py +1036 -0
  86. numpy-1.10.0.post2/numpy/core/records.py +846 -0
  87. numpy-1.10.0.post2/numpy/core/setup.py +983 -0
  88. numpy-1.10.0.post2/numpy/core/setup_common.py +352 -0
  89. numpy-1.10.0.post2/numpy/core/shape_base.py +350 -0
  90. numpy-1.10.0.post2/numpy/core/src/multiarray/alloc.c +244 -0
  91. numpy-1.10.0.post2/numpy/core/src/multiarray/arrayobject.c +1858 -0
  92. numpy-1.10.0.post2/numpy/core/src/multiarray/arraytypes.c.src +4738 -0
  93. numpy-1.10.0.post2/numpy/core/src/multiarray/arraytypes.h +37 -0
  94. numpy-1.10.0.post2/numpy/core/src/multiarray/buffer.c +981 -0
  95. numpy-1.10.0.post2/numpy/core/src/multiarray/calculation.c +1224 -0
  96. numpy-1.10.0.post2/numpy/core/src/multiarray/cblasfuncs.c +812 -0
  97. numpy-1.10.0.post2/numpy/core/src/multiarray/cblasfuncs.h +10 -0
  98. numpy-1.10.0.post2/numpy/core/src/multiarray/common.c +911 -0
  99. numpy-1.10.0.post2/numpy/core/src/multiarray/common.h +250 -0
  100. numpy-1.10.0.post2/numpy/core/src/multiarray/compiled_base.c +1664 -0
  101. numpy-1.10.0.post2/numpy/core/src/multiarray/compiled_base.h +24 -0
  102. numpy-1.10.0.post2/numpy/core/src/multiarray/conversion_utils.c +1217 -0
  103. numpy-1.10.0.post2/numpy/core/src/multiarray/convert.c +590 -0
  104. numpy-1.10.0.post2/numpy/core/src/multiarray/convert_datatype.c +2155 -0
  105. numpy-1.10.0.post2/numpy/core/src/multiarray/ctors.c +3838 -0
  106. numpy-1.10.0.post2/numpy/core/src/multiarray/datetime.c +3821 -0
  107. numpy-1.10.0.post2/numpy/core/src/multiarray/datetime_busday.c +1322 -0
  108. numpy-1.10.0.post2/numpy/core/src/multiarray/datetime_busdaycal.c +552 -0
  109. numpy-1.10.0.post2/numpy/core/src/multiarray/datetime_strings.c +1772 -0
  110. numpy-1.10.0.post2/numpy/core/src/multiarray/descriptor.c +3719 -0
  111. numpy-1.10.0.post2/numpy/core/src/multiarray/dtype_transfer.c +4239 -0
  112. numpy-1.10.0.post2/numpy/core/src/multiarray/einsum.c.src +3005 -0
  113. numpy-1.10.0.post2/numpy/core/src/multiarray/getset.c +986 -0
  114. numpy-1.10.0.post2/numpy/core/src/multiarray/hashdescr.c +318 -0
  115. numpy-1.10.0.post2/numpy/core/src/multiarray/item_selection.c +2413 -0
  116. numpy-1.10.0.post2/numpy/core/src/multiarray/iterators.c +2192 -0
  117. numpy-1.10.0.post2/numpy/core/src/multiarray/lowlevel_strided_loops.c.src +1769 -0
  118. numpy-1.10.0.post2/numpy/core/src/multiarray/mapping.c +3380 -0
  119. numpy-1.10.0.post2/numpy/core/src/multiarray/mapping.h +77 -0
  120. numpy-1.10.0.post2/numpy/core/src/multiarray/methods.c +2514 -0
  121. numpy-1.10.0.post2/numpy/core/src/multiarray/multiarray_tests.c.src +1035 -0
  122. numpy-1.10.0.post2/numpy/core/src/multiarray/multiarraymodule.c +4628 -0
  123. numpy-1.10.0.post2/numpy/core/src/multiarray/multiarraymodule.h +15 -0
  124. numpy-1.10.0.post2/numpy/core/src/multiarray/nditer_api.c +2809 -0
  125. numpy-1.10.0.post2/numpy/core/src/multiarray/nditer_constr.c +3160 -0
  126. numpy-1.10.0.post2/numpy/core/src/multiarray/nditer_pywrap.c +2499 -0
  127. numpy-1.10.0.post2/numpy/core/src/multiarray/number.c +1106 -0
  128. numpy-1.10.0.post2/numpy/core/src/multiarray/number.h +77 -0
  129. numpy-1.10.0.post2/numpy/core/src/multiarray/numpymemoryview.c +308 -0
  130. numpy-1.10.0.post2/numpy/core/src/multiarray/numpyos.c +683 -0
  131. numpy-1.10.0.post2/numpy/core/src/multiarray/scalarapi.c +870 -0
  132. numpy-1.10.0.post2/numpy/core/src/multiarray/scalartypes.c.src +4343 -0
  133. numpy-1.10.0.post2/numpy/core/src/multiarray/scalartypes.h +55 -0
  134. numpy-1.10.0.post2/numpy/core/src/multiarray/shape.c +1131 -0
  135. numpy-1.10.0.post2/numpy/core/src/multiarray/ucsnarrow.c +174 -0
  136. numpy-1.10.0.post2/numpy/core/src/multiarray/vdot.c +180 -0
  137. numpy-1.10.0.post2/numpy/core/src/multiarray/vdot.h +18 -0
  138. numpy-1.10.0.post2/numpy/core/src/npymath/ieee754.c.src +808 -0
  139. numpy-1.10.0.post2/numpy/core/src/npymath/npy_math.c.src +597 -0
  140. numpy-1.10.0.post2/numpy/core/src/npymath/npy_math_complex.c.src +1788 -0
  141. numpy-1.10.0.post2/numpy/core/src/npymath/npy_math_private.h +544 -0
  142. numpy-1.10.0.post2/numpy/core/src/npysort/heapsort.c.src +402 -0
  143. numpy-1.10.0.post2/numpy/core/src/npysort/mergesort.c.src +488 -0
  144. numpy-1.10.0.post2/numpy/core/src/npysort/npysort_common.h +360 -0
  145. numpy-1.10.0.post2/numpy/core/src/npysort/quicksort.c.src +523 -0
  146. numpy-1.10.0.post2/numpy/core/src/npysort/selection.c.src +426 -0
  147. numpy-1.10.0.post2/numpy/core/src/private/npy_cblas.h +584 -0
  148. numpy-1.10.0.post2/numpy/core/src/private/npy_config.h +101 -0
  149. numpy-1.10.0.post2/numpy/core/src/private/npy_import.h +32 -0
  150. numpy-1.10.0.post2/numpy/core/src/private/npy_partition.h.src +122 -0
  151. numpy-1.10.0.post2/numpy/core/src/private/npy_sort.h +196 -0
  152. numpy-1.10.0.post2/numpy/core/src/private/templ_common.h.src +43 -0
  153. numpy-1.10.0.post2/numpy/core/src/private/ufunc_override.h +397 -0
  154. numpy-1.10.0.post2/numpy/core/src/umath/funcs.inc.src +356 -0
  155. numpy-1.10.0.post2/numpy/core/src/umath/loops.c.src +2675 -0
  156. numpy-1.10.0.post2/numpy/core/src/umath/loops.h.src +497 -0
  157. numpy-1.10.0.post2/numpy/core/src/umath/operand_flag_tests.c.src +105 -0
  158. numpy-1.10.0.post2/numpy/core/src/umath/scalarmath.c.src +1738 -0
  159. numpy-1.10.0.post2/numpy/core/src/umath/simd.inc.src +903 -0
  160. numpy-1.10.0.post2/numpy/core/src/umath/test_rational.c.src +1404 -0
  161. numpy-1.10.0.post2/numpy/core/src/umath/ufunc_object.c +5703 -0
  162. numpy-1.10.0.post2/numpy/core/src/umath/ufunc_type_resolution.c +2159 -0
  163. numpy-1.10.0.post2/numpy/core/src/umath/umath_tests.c.src +392 -0
  164. numpy-1.10.0.post2/numpy/core/src/umath/umathmodule.c +443 -0
  165. numpy-1.10.0.post2/numpy/core/tests/test_abc.py +47 -0
  166. numpy-1.10.0.post2/numpy/core/tests/test_api.py +515 -0
  167. numpy-1.10.0.post2/numpy/core/tests/test_arrayprint.py +171 -0
  168. numpy-1.10.0.post2/numpy/core/tests/test_datetime.py +1820 -0
  169. numpy-1.10.0.post2/numpy/core/tests/test_defchararray.py +703 -0
  170. numpy-1.10.0.post2/numpy/core/tests/test_deprecations.py +619 -0
  171. numpy-1.10.0.post2/numpy/core/tests/test_dtype.py +578 -0
  172. numpy-1.10.0.post2/numpy/core/tests/test_einsum.py +627 -0
  173. numpy-1.10.0.post2/numpy/core/tests/test_errstate.py +52 -0
  174. numpy-1.10.0.post2/numpy/core/tests/test_function_base.py +142 -0
  175. numpy-1.10.0.post2/numpy/core/tests/test_getlimits.py +77 -0
  176. numpy-1.10.0.post2/numpy/core/tests/test_half.py +436 -0
  177. numpy-1.10.0.post2/numpy/core/tests/test_indexerrors.py +126 -0
  178. numpy-1.10.0.post2/numpy/core/tests/test_indexing.py +1047 -0
  179. numpy-1.10.0.post2/numpy/core/tests/test_item_selection.py +73 -0
  180. numpy-1.10.0.post2/numpy/core/tests/test_machar.py +29 -0
  181. numpy-1.10.0.post2/numpy/core/tests/test_memmap.py +130 -0
  182. numpy-1.10.0.post2/numpy/core/tests/test_multiarray.py +5924 -0
  183. numpy-1.10.0.post2/numpy/core/tests/test_multiarray_assignment.py +84 -0
  184. numpy-1.10.0.post2/numpy/core/tests/test_nditer.py +2638 -0
  185. numpy-1.10.0.post2/numpy/core/tests/test_numeric.py +2204 -0
  186. numpy-1.10.0.post2/numpy/core/tests/test_numerictypes.py +382 -0
  187. numpy-1.10.0.post2/numpy/core/tests/test_print.py +248 -0
  188. numpy-1.10.0.post2/numpy/core/tests/test_records.py +299 -0
  189. numpy-1.10.0.post2/numpy/core/tests/test_regression.py +2177 -0
  190. numpy-1.10.0.post2/numpy/core/tests/test_scalarinherit.py +41 -0
  191. numpy-1.10.0.post2/numpy/core/tests/test_scalarmath.py +316 -0
  192. numpy-1.10.0.post2/numpy/core/tests/test_shape_base.py +319 -0
  193. numpy-1.10.0.post2/numpy/core/tests/test_ufunc.py +1227 -0
  194. numpy-1.10.0.post2/numpy/core/tests/test_umath.py +1933 -0
  195. numpy-1.10.0.post2/numpy/core/tests/test_umath_complex.py +538 -0
  196. numpy-1.10.0.post2/numpy/core/tests/test_unicode.py +360 -0
  197. numpy-1.10.0.post2/numpy/distutils/__init__.py +23 -0
  198. numpy-1.10.0.post2/numpy/distutils/ccompiler.py +690 -0
  199. numpy-1.10.0.post2/numpy/distutils/command/autodist.py +94 -0
  200. numpy-1.10.0.post2/numpy/distutils/command/build.py +47 -0
  201. numpy-1.10.0.post2/numpy/distutils/command/build_clib.py +295 -0
  202. numpy-1.10.0.post2/numpy/distutils/command/build_ext.py +522 -0
  203. numpy-1.10.0.post2/numpy/distutils/command/config.py +437 -0
  204. numpy-1.10.0.post2/numpy/distutils/exec_command.py +651 -0
  205. numpy-1.10.0.post2/numpy/distutils/fcompiler/compaq.py +128 -0
  206. numpy-1.10.0.post2/numpy/distutils/fcompiler/gnu.py +403 -0
  207. numpy-1.10.0.post2/numpy/distutils/fcompiler/intel.py +217 -0
  208. numpy-1.10.0.post2/numpy/distutils/fcompiler/pg.py +63 -0
  209. numpy-1.10.0.post2/numpy/distutils/fcompiler/sun.py +55 -0
  210. numpy-1.10.0.post2/numpy/distutils/intelccompiler.py +95 -0
  211. numpy-1.10.0.post2/numpy/distutils/lib2def.py +116 -0
  212. numpy-1.10.0.post2/numpy/distutils/mingw32ccompiler.py +599 -0
  213. numpy-1.10.0.post2/numpy/distutils/misc_util.py +2306 -0
  214. numpy-1.10.0.post2/numpy/distutils/msvc9compiler.py +23 -0
  215. numpy-1.10.0.post2/numpy/distutils/msvccompiler.py +17 -0
  216. numpy-1.10.0.post2/numpy/distutils/npy_pkg_config.py +451 -0
  217. numpy-1.10.0.post2/numpy/distutils/system_info.py +2397 -0
  218. numpy-1.10.0.post2/numpy/distutils/tests/f2py_ext/tests/test_fib2.py +12 -0
  219. numpy-1.10.0.post2/numpy/distutils/tests/f2py_f90_ext/tests/test_foo.py +11 -0
  220. numpy-1.10.0.post2/numpy/distutils/tests/gen_ext/tests/test_fib3.py +11 -0
  221. numpy-1.10.0.post2/numpy/distutils/tests/pyrex_ext/tests/test_primes.py +13 -0
  222. numpy-1.10.0.post2/numpy/distutils/tests/swig_ext/__init__.py +1 -0
  223. numpy-1.10.0.post2/numpy/distutils/tests/swig_ext/tests/test_example.py +17 -0
  224. numpy-1.10.0.post2/numpy/distutils/tests/swig_ext/tests/test_example2.py +15 -0
  225. numpy-1.10.0.post2/numpy/distutils/tests/test_fcompiler_gnu.py +60 -0
  226. numpy-1.10.0.post2/numpy/distutils/tests/test_fcompiler_intel.py +36 -0
  227. numpy-1.10.0.post2/numpy/distutils/tests/test_misc_util.py +79 -0
  228. numpy-1.10.0.post2/numpy/distutils/tests/test_npy_pkg_config.py +102 -0
  229. numpy-1.10.0.post2/numpy/distutils/tests/test_system_info.py +209 -0
  230. numpy-1.10.0.post2/numpy/distutils/unixccompiler.py +125 -0
  231. numpy-1.10.0.post2/numpy/doc/byteswapping.py +156 -0
  232. numpy-1.10.0.post2/numpy/doc/creation.py +144 -0
  233. numpy-1.10.0.post2/numpy/doc/glossary.py +423 -0
  234. numpy-1.10.0.post2/numpy/doc/indexing.py +439 -0
  235. numpy-1.10.0.post2/numpy/doc/structured_arrays.py +290 -0
  236. numpy-1.10.0.post2/numpy/f2py/__init__.py +49 -0
  237. numpy-1.10.0.post2/numpy/f2py/__main__.py +25 -0
  238. numpy-1.10.0.post2/numpy/f2py/auxfuncs.py +858 -0
  239. numpy-1.10.0.post2/numpy/f2py/capi_maps.py +851 -0
  240. numpy-1.10.0.post2/numpy/f2py/cb_rules.py +554 -0
  241. numpy-1.10.0.post2/numpy/f2py/cfuncs.py +1261 -0
  242. numpy-1.10.0.post2/numpy/f2py/common_rules.py +150 -0
  243. numpy-1.10.0.post2/numpy/f2py/crackfortran.py +3314 -0
  244. numpy-1.10.0.post2/numpy/f2py/diagnose.py +156 -0
  245. numpy-1.10.0.post2/numpy/f2py/f2py2e.py +656 -0
  246. numpy-1.10.0.post2/numpy/f2py/f2py_testing.py +48 -0
  247. numpy-1.10.0.post2/numpy/f2py/f90mod_rules.py +272 -0
  248. numpy-1.10.0.post2/numpy/f2py/func2subr.py +299 -0
  249. numpy-1.10.0.post2/numpy/f2py/rules.py +1475 -0
  250. numpy-1.10.0.post2/numpy/f2py/setup.py +117 -0
  251. numpy-1.10.0.post2/numpy/f2py/src/fortranobject.c +1037 -0
  252. numpy-1.10.0.post2/numpy/f2py/src/fortranobject.h +162 -0
  253. numpy-1.10.0.post2/numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +223 -0
  254. numpy-1.10.0.post2/numpy/f2py/tests/test_array_from_pyobj.py +593 -0
  255. numpy-1.10.0.post2/numpy/f2py/tests/test_assumed_shape.py +35 -0
  256. numpy-1.10.0.post2/numpy/f2py/tests/test_callback.py +136 -0
  257. numpy-1.10.0.post2/numpy/f2py/tests/test_kind.py +36 -0
  258. numpy-1.10.0.post2/numpy/f2py/tests/test_mixed.py +40 -0
  259. numpy-1.10.0.post2/numpy/f2py/tests/test_regression.py +34 -0
  260. numpy-1.10.0.post2/numpy/f2py/tests/test_return_character.py +148 -0
  261. numpy-1.10.0.post2/numpy/f2py/tests/test_return_complex.py +170 -0
  262. numpy-1.10.0.post2/numpy/f2py/tests/test_return_integer.py +180 -0
  263. numpy-1.10.0.post2/numpy/f2py/tests/test_return_logical.py +189 -0
  264. numpy-1.10.0.post2/numpy/f2py/tests/test_return_real.py +206 -0
  265. numpy-1.10.0.post2/numpy/f2py/tests/test_size.py +44 -0
  266. numpy-1.10.0.post2/numpy/f2py/tests/util.py +367 -0
  267. numpy-1.10.0.post2/numpy/f2py/use_rules.py +115 -0
  268. numpy-1.10.0.post2/numpy/fft/fftpack.c +1501 -0
  269. numpy-1.10.0.post2/numpy/fft/fftpack.h +28 -0
  270. numpy-1.10.0.post2/numpy/fft/fftpack.py +1241 -0
  271. numpy-1.10.0.post2/numpy/fft/fftpack_litemodule.c +363 -0
  272. numpy-1.10.0.post2/numpy/fft/info.py +187 -0
  273. numpy-1.10.0.post2/numpy/fft/setup.py +19 -0
  274. numpy-1.10.0.post2/numpy/fft/tests/test_fftpack.py +166 -0
  275. numpy-1.10.0.post2/numpy/fft/tests/test_helper.py +78 -0
  276. numpy-1.10.0.post2/numpy/lib/_iotools.py +917 -0
  277. numpy-1.10.0.post2/numpy/lib/arraypad.py +1497 -0
  278. numpy-1.10.0.post2/numpy/lib/arraysetops.py +480 -0
  279. numpy-1.10.0.post2/numpy/lib/arrayterator.py +226 -0
  280. numpy-1.10.0.post2/numpy/lib/financial.py +737 -0
  281. numpy-1.10.0.post2/numpy/lib/format.py +814 -0
  282. numpy-1.10.0.post2/numpy/lib/function_base.py +4150 -0
  283. numpy-1.10.0.post2/numpy/lib/index_tricks.py +874 -0
  284. numpy-1.10.0.post2/numpy/lib/info.py +152 -0
  285. numpy-1.10.0.post2/numpy/lib/nanfunctions.py +1237 -0
  286. numpy-1.10.0.post2/numpy/lib/npyio.py +1992 -0
  287. numpy-1.10.0.post2/numpy/lib/polynomial.py +1277 -0
  288. numpy-1.10.0.post2/numpy/lib/recfunctions.py +1003 -0
  289. numpy-1.10.0.post2/numpy/lib/setup.py +12 -0
  290. numpy-1.10.0.post2/numpy/lib/shape_base.py +872 -0
  291. numpy-1.10.0.post2/numpy/lib/stride_tricks.py +200 -0
  292. numpy-1.10.0.post2/numpy/lib/tests/data/py2-objarr.npy +0 -0
  293. numpy-1.10.0.post2/numpy/lib/tests/data/py2-objarr.npz +0 -0
  294. numpy-1.10.0.post2/numpy/lib/tests/data/py3-objarr.npy +0 -0
  295. numpy-1.10.0.post2/numpy/lib/tests/data/py3-objarr.npz +0 -0
  296. numpy-1.10.0.post2/numpy/lib/tests/test__iotools.py +348 -0
  297. numpy-1.10.0.post2/numpy/lib/tests/test__version.py +70 -0
  298. numpy-1.10.0.post2/numpy/lib/tests/test_arraypad.py +1047 -0
  299. numpy-1.10.0.post2/numpy/lib/tests/test_arraysetops.py +309 -0
  300. numpy-1.10.0.post2/numpy/lib/tests/test_financial.py +163 -0
  301. numpy-1.10.0.post2/numpy/lib/tests/test_format.py +841 -0
  302. numpy-1.10.0.post2/numpy/lib/tests/test_function_base.py +2555 -0
  303. numpy-1.10.0.post2/numpy/lib/tests/test_index_tricks.py +326 -0
  304. numpy-1.10.0.post2/numpy/lib/tests/test_io.py +1916 -0
  305. numpy-1.10.0.post2/numpy/lib/tests/test_nanfunctions.py +707 -0
  306. numpy-1.10.0.post2/numpy/lib/tests/test_packbits.py +26 -0
  307. numpy-1.10.0.post2/numpy/lib/tests/test_polynomial.py +188 -0
  308. numpy-1.10.0.post2/numpy/lib/tests/test_recfunctions.py +734 -0
  309. numpy-1.10.0.post2/numpy/lib/tests/test_shape_base.py +386 -0
  310. numpy-1.10.0.post2/numpy/lib/tests/test_stride_tricks.py +405 -0
  311. numpy-1.10.0.post2/numpy/lib/tests/test_twodim_base.py +535 -0
  312. numpy-1.10.0.post2/numpy/lib/tests/test_type_check.py +332 -0
  313. numpy-1.10.0.post2/numpy/lib/twodim_base.py +1007 -0
  314. numpy-1.10.0.post2/numpy/lib/type_check.py +596 -0
  315. numpy-1.10.0.post2/numpy/lib/utils.py +1122 -0
  316. numpy-1.10.0.post2/numpy/linalg/lapack_lite/python_xerbla.c +46 -0
  317. numpy-1.10.0.post2/numpy/linalg/lapack_litemodule.c +358 -0
  318. numpy-1.10.0.post2/numpy/linalg/linalg.py +2406 -0
  319. numpy-1.10.0.post2/numpy/linalg/tests/test_build.py +59 -0
  320. numpy-1.10.0.post2/numpy/linalg/tests/test_linalg.py +1351 -0
  321. numpy-1.10.0.post2/numpy/linalg/tests/test_regression.py +95 -0
  322. numpy-1.10.0.post2/numpy/linalg/umath_linalg.c.src +3236 -0
  323. numpy-1.10.0.post2/numpy/ma/__init__.py +56 -0
  324. numpy-1.10.0.post2/numpy/ma/bench.py +131 -0
  325. numpy-1.10.0.post2/numpy/ma/core.py +7608 -0
  326. numpy-1.10.0.post2/numpy/ma/extras.py +1953 -0
  327. numpy-1.10.0.post2/numpy/ma/mrecords.py +796 -0
  328. numpy-1.10.0.post2/numpy/ma/setup.py +13 -0
  329. numpy-1.10.0.post2/numpy/ma/tests/test_core.py +4100 -0
  330. numpy-1.10.0.post2/numpy/ma/tests/test_extras.py +1132 -0
  331. numpy-1.10.0.post2/numpy/ma/tests/test_mrecords.py +520 -0
  332. numpy-1.10.0.post2/numpy/ma/tests/test_old_ma.py +879 -0
  333. numpy-1.10.0.post2/numpy/ma/tests/test_regression.py +80 -0
  334. numpy-1.10.0.post2/numpy/ma/tests/test_subclassing.py +338 -0
  335. numpy-1.10.0.post2/numpy/ma/testutils.py +289 -0
  336. numpy-1.10.0.post2/numpy/ma/timer_comparison.py +440 -0
  337. numpy-1.10.0.post2/numpy/matlib.py +358 -0
  338. numpy-1.10.0.post2/numpy/matrixlib/defmatrix.py +1232 -0
  339. numpy-1.10.0.post2/numpy/matrixlib/tests/test_defmatrix.py +449 -0
  340. numpy-1.10.0.post2/numpy/matrixlib/tests/test_multiarray.py +23 -0
  341. numpy-1.10.0.post2/numpy/matrixlib/tests/test_numeric.py +23 -0
  342. numpy-1.10.0.post2/numpy/matrixlib/tests/test_regression.py +37 -0
  343. numpy-1.10.0.post2/numpy/polynomial/_polybase.py +962 -0
  344. numpy-1.10.0.post2/numpy/polynomial/chebyshev.py +2056 -0
  345. numpy-1.10.0.post2/numpy/polynomial/hermite.py +1831 -0
  346. numpy-1.10.0.post2/numpy/polynomial/hermite_e.py +1828 -0
  347. numpy-1.10.0.post2/numpy/polynomial/laguerre.py +1780 -0
  348. numpy-1.10.0.post2/numpy/polynomial/legendre.py +1808 -0
  349. numpy-1.10.0.post2/numpy/polynomial/polyutils.py +403 -0
  350. numpy-1.10.0.post2/numpy/random/mtrand/distributions.c +912 -0
  351. numpy-1.10.0.post2/numpy/random/mtrand/mtrand.c +34805 -0
  352. numpy-1.10.0.post2/numpy/random/mtrand/mtrand.pyx +4766 -0
  353. numpy-1.10.0.post2/numpy/random/setup.py +61 -0
  354. numpy-1.10.0.post2/numpy/random/tests/test_random.py +723 -0
  355. numpy-1.10.0.post2/numpy/random/tests/test_regression.py +117 -0
  356. numpy-1.10.0.post2/numpy/setup.py +29 -0
  357. numpy-1.10.0.post2/numpy/testing/__init__.py +15 -0
  358. numpy-1.10.0.post2/numpy/testing/decorators.py +271 -0
  359. numpy-1.10.0.post2/numpy/testing/noseclasses.py +353 -0
  360. numpy-1.10.0.post2/numpy/testing/nosetester.py +511 -0
  361. numpy-1.10.0.post2/numpy/testing/print_coercion_tables.py +91 -0
  362. numpy-1.10.0.post2/numpy/testing/setup.py +20 -0
  363. numpy-1.10.0.post2/numpy/testing/tests/test_decorators.py +182 -0
  364. numpy-1.10.0.post2/numpy/testing/tests/test_utils.py +781 -0
  365. numpy-1.10.0.post2/numpy/testing/utils.py +1831 -0
  366. numpy-1.10.0.post2/numpy/tests/test_ctypeslib.py +106 -0
  367. numpy-1.10.0.post2/numpy/tests/test_matlib.py +55 -0
  368. numpy-1.10.0.post2/numpy/tests/test_scripts.py +69 -0
  369. numpy-1.10.0.post2/numpy/version.py +10 -0
  370. numpy-1.10.0.post2/setup.py +260 -0
  371. numpy-1.10.0.post2/site.cfg.example +193 -0
  372. numpy-1.10.0.post2/tmp.txt +789 -0
  373. numpy-1.10.0.post2/tools/swig/README +145 -0
  374. numpy-1.10.0.post2/tools/swig/numpy.i +3161 -0
  375. numpy-1.10.0.post2/tools/swig/test/Array.i +135 -0
  376. numpy-1.10.0.post2/tools/swig/test/ArrayZ.cxx +131 -0
  377. numpy-1.10.0.post2/tools/swig/test/ArrayZ.h +56 -0
  378. numpy-1.10.0.post2/tools/swig/test/Flat.cxx +36 -0
  379. numpy-1.10.0.post2/tools/swig/test/Flat.h +34 -0
  380. numpy-1.10.0.post2/tools/swig/test/Flat.i +36 -0
  381. numpy-1.10.0.post2/tools/swig/test/Makefile +37 -0
  382. numpy-1.10.0.post2/tools/swig/test/setup.py +71 -0
  383. numpy-1.10.0.post2/tools/swig/test/testArray.py +385 -0
  384. numpy-1.10.0.post2/tools/swig/test/testFarray.py +159 -0
  385. numpy-1.10.0.post2/tools/swig/test/testFlat.py +200 -0
  386. numpy-1.10.0.post2/tools/swig/test/testFortran.py +173 -0
  387. numpy-1.10.0.post2/tools/swig/test/testMatrix.py +362 -0
  388. numpy-1.10.0.post2/tools/swig/test/testSuperTensor.py +388 -0
  389. numpy-1.10.0.post2/tools/swig/test/testTensor.py +402 -0
  390. numpy-1.10.0.post2/tools/swig/test/testVector.py +381 -0
  391. numpy-1.9.3/INSTALL.txt +0 -138
  392. numpy-1.9.3/LICENSE.txt +0 -30
  393. numpy-1.9.3/MANIFEST.in +0 -26
  394. numpy-1.9.3/PKG-INFO +0 -39
  395. numpy-1.9.3/doc/release/1.9.3-notes.rst +0 -23
  396. numpy-1.9.3/doc/source/conf.py +0 -331
  397. numpy-1.9.3/doc/source/dev/gitwash/branch_list.png +0 -0
  398. numpy-1.9.3/doc/source/dev/gitwash/branch_list_compare.png +0 -0
  399. numpy-1.9.3/doc/source/dev/gitwash/development_workflow.rst +0 -568
  400. numpy-1.9.3/doc/source/dev/gitwash/git_links.inc +0 -88
  401. numpy-1.9.3/doc/source/dev/gitwash/index.rst +0 -14
  402. numpy-1.9.3/doc/source/dev/index.rst +0 -10
  403. numpy-1.9.3/doc/source/reference/arrays.classes.rst +0 -427
  404. numpy-1.9.3/doc/source/reference/arrays.dtypes.rst +0 -534
  405. numpy-1.9.3/doc/source/reference/arrays.indexing.rst +0 -550
  406. numpy-1.9.3/doc/source/reference/arrays.interface.rst +0 -336
  407. numpy-1.9.3/doc/source/reference/arrays.ndarray.rst +0 -609
  408. numpy-1.9.3/doc/source/reference/arrays.scalars.rst +0 -291
  409. numpy-1.9.3/doc/source/reference/c-api.array.rst +0 -3362
  410. numpy-1.9.3/doc/source/reference/c-api.config.rst +0 -103
  411. numpy-1.9.3/doc/source/reference/c-api.coremath.rst +0 -420
  412. numpy-1.9.3/doc/source/reference/c-api.dtype.rst +0 -376
  413. numpy-1.9.3/doc/source/reference/c-api.generalized-ufuncs.rst +0 -171
  414. numpy-1.9.3/doc/source/reference/c-api.iterator.rst +0 -1298
  415. numpy-1.9.3/doc/source/reference/c-api.types-and-structures.rst +0 -1204
  416. numpy-1.9.3/doc/source/reference/c-api.ufunc.rst +0 -399
  417. numpy-1.9.3/doc/source/reference/index.rst +0 -44
  418. numpy-1.9.3/doc/source/reference/internals.code-explanations.rst +0 -666
  419. numpy-1.9.3/doc/source/reference/routines.array-manipulation.rst +0 -113
  420. numpy-1.9.3/doc/source/reference/routines.io.rst +0 -74
  421. numpy-1.9.3/doc/source/reference/routines.linalg.rst +0 -88
  422. numpy-1.9.3/doc/source/reference/routines.ma.rst +0 -405
  423. numpy-1.9.3/doc/source/reference/routines.sort.rst +0 -42
  424. numpy-1.9.3/doc/source/reference/routines.statistics.rst +0 -55
  425. numpy-1.9.3/doc/source/reference/swig.interface-file.rst +0 -1055
  426. numpy-1.9.3/doc/source/reference/swig.testing.rst +0 -166
  427. numpy-1.9.3/doc/source/reference/ufuncs.rst +0 -651
  428. numpy-1.9.3/doc/source/release.rst +0 -19
  429. numpy-1.9.3/doc/source/user/basics.io.genfromtxt.rst +0 -531
  430. numpy-1.9.3/doc/source/user/basics.rec.rst +0 -7
  431. numpy-1.9.3/doc/source/user/c-info.beyond-basics.rst +0 -560
  432. numpy-1.9.3/doc/source/user/c-info.how-to-extend.rst +0 -642
  433. numpy-1.9.3/doc/source/user/c-info.python-as-glue.rst +0 -1528
  434. numpy-1.9.3/doc/source/user/c-info.ufunc-tutorial.rst +0 -1211
  435. numpy-1.9.3/doc/source/user/install.rst +0 -180
  436. numpy-1.9.3/numpy/__init__.py +0 -216
  437. numpy-1.9.3/numpy/_import_tools.py +0 -348
  438. numpy-1.9.3/numpy/add_newdocs.py +0 -7518
  439. numpy-1.9.3/numpy/compat/_inspect.py +0 -221
  440. numpy-1.9.3/numpy/compat/py3k.py +0 -89
  441. numpy-1.9.3/numpy/compat/setup.py +0 -12
  442. numpy-1.9.3/numpy/core/__init__.py +0 -78
  443. numpy-1.9.3/numpy/core/_internal.py +0 -570
  444. numpy-1.9.3/numpy/core/_methods.py +0 -134
  445. numpy-1.9.3/numpy/core/arrayprint.py +0 -752
  446. numpy-1.9.3/numpy/core/blasdot/_dotblas.c +0 -1255
  447. numpy-1.9.3/numpy/core/blasdot/apple_sgemv_patch.c +0 -216
  448. numpy-1.9.3/numpy/core/blasdot/cblas.h +0 -578
  449. numpy-1.9.3/numpy/core/code_generators/cversions.txt +0 -31
  450. numpy-1.9.3/numpy/core/code_generators/generate_ufunc_api.py +0 -219
  451. numpy-1.9.3/numpy/core/code_generators/generate_umath.py +0 -972
  452. numpy-1.9.3/numpy/core/code_generators/numpy_api.py +0 -412
  453. numpy-1.9.3/numpy/core/code_generators/ufunc_docstrings.py +0 -3419
  454. numpy-1.9.3/numpy/core/defchararray.py +0 -2687
  455. numpy-1.9.3/numpy/core/fromnumeric.py +0 -2938
  456. numpy-1.9.3/numpy/core/function_base.py +0 -190
  457. numpy-1.9.3/numpy/core/getlimits.py +0 -306
  458. numpy-1.9.3/numpy/core/include/numpy/fenv/fenv.c +0 -38
  459. numpy-1.9.3/numpy/core/include/numpy/fenv/fenv.h +0 -224
  460. numpy-1.9.3/numpy/core/include/numpy/ndarrayobject.h +0 -237
  461. numpy-1.9.3/numpy/core/include/numpy/ndarraytypes.h +0 -1820
  462. numpy-1.9.3/numpy/core/include/numpy/npy_3kcompat.h +0 -506
  463. numpy-1.9.3/numpy/core/include/numpy/npy_common.h +0 -1038
  464. numpy-1.9.3/numpy/core/include/numpy/npy_cpu.h +0 -122
  465. numpy-1.9.3/numpy/core/include/numpy/npy_endian.h +0 -49
  466. numpy-1.9.3/numpy/core/include/numpy/npy_math.h +0 -479
  467. numpy-1.9.3/numpy/core/include/numpy/numpyconfig.h +0 -35
  468. numpy-1.9.3/numpy/core/machar.py +0 -338
  469. numpy-1.9.3/numpy/core/memmap.py +0 -308
  470. numpy-1.9.3/numpy/core/numeric.py +0 -2842
  471. numpy-1.9.3/numpy/core/numerictypes.py +0 -1042
  472. numpy-1.9.3/numpy/core/records.py +0 -804
  473. numpy-1.9.3/numpy/core/setup.py +0 -1016
  474. numpy-1.9.3/numpy/core/setup_common.py +0 -330
  475. numpy-1.9.3/numpy/core/shape_base.py +0 -277
  476. numpy-1.9.3/numpy/core/src/multiarray/alloc.c +0 -241
  477. numpy-1.9.3/numpy/core/src/multiarray/arrayobject.c +0 -1791
  478. numpy-1.9.3/numpy/core/src/multiarray/arraytypes.c.src +0 -4372
  479. numpy-1.9.3/numpy/core/src/multiarray/arraytypes.h +0 -13
  480. numpy-1.9.3/numpy/core/src/multiarray/buffer.c +0 -954
  481. numpy-1.9.3/numpy/core/src/multiarray/calculation.c +0 -1229
  482. numpy-1.9.3/numpy/core/src/multiarray/common.c +0 -798
  483. numpy-1.9.3/numpy/core/src/multiarray/common.h +0 -328
  484. numpy-1.9.3/numpy/core/src/multiarray/conversion_utils.c +0 -1240
  485. numpy-1.9.3/numpy/core/src/multiarray/convert.c +0 -589
  486. numpy-1.9.3/numpy/core/src/multiarray/convert_datatype.c +0 -2199
  487. numpy-1.9.3/numpy/core/src/multiarray/ctors.c +0 -3785
  488. numpy-1.9.3/numpy/core/src/multiarray/datetime.c +0 -3823
  489. numpy-1.9.3/numpy/core/src/multiarray/datetime_busday.c +0 -1322
  490. numpy-1.9.3/numpy/core/src/multiarray/datetime_busdaycal.c +0 -552
  491. numpy-1.9.3/numpy/core/src/multiarray/datetime_strings.c +0 -1772
  492. numpy-1.9.3/numpy/core/src/multiarray/descriptor.c +0 -3658
  493. numpy-1.9.3/numpy/core/src/multiarray/dtype_transfer.c +0 -4232
  494. numpy-1.9.3/numpy/core/src/multiarray/einsum.c.src +0 -3013
  495. numpy-1.9.3/numpy/core/src/multiarray/getset.c +0 -984
  496. numpy-1.9.3/numpy/core/src/multiarray/hashdescr.c +0 -319
  497. numpy-1.9.3/numpy/core/src/multiarray/item_selection.c +0 -2711
  498. numpy-1.9.3/numpy/core/src/multiarray/iterators.c +0 -2160
  499. numpy-1.9.3/numpy/core/src/multiarray/lowlevel_strided_loops.c.src +0 -1767
  500. numpy-1.9.3/numpy/core/src/multiarray/mapping.c +0 -3316
  501. numpy-1.9.3/numpy/core/src/multiarray/mapping.h +0 -73
  502. numpy-1.9.3/numpy/core/src/multiarray/methods.c +0 -2497
  503. numpy-1.9.3/numpy/core/src/multiarray/multiarray_tests.c.src +0 -977
  504. numpy-1.9.3/numpy/core/src/multiarray/multiarraymodule.c +0 -4200
  505. numpy-1.9.3/numpy/core/src/multiarray/multiarraymodule.h +0 -4
  506. numpy-1.9.3/numpy/core/src/multiarray/nditer_api.c +0 -2809
  507. numpy-1.9.3/numpy/core/src/multiarray/nditer_constr.c +0 -3159
  508. numpy-1.9.3/numpy/core/src/multiarray/nditer_pywrap.c +0 -2492
  509. numpy-1.9.3/numpy/core/src/multiarray/number.c +0 -1057
  510. numpy-1.9.3/numpy/core/src/multiarray/number.h +0 -76
  511. numpy-1.9.3/numpy/core/src/multiarray/numpymemoryview.c +0 -309
  512. numpy-1.9.3/numpy/core/src/multiarray/numpyos.c +0 -683
  513. numpy-1.9.3/numpy/core/src/multiarray/scalarapi.c +0 -861
  514. numpy-1.9.3/numpy/core/src/multiarray/scalartypes.c.src +0 -4270
  515. numpy-1.9.3/numpy/core/src/multiarray/scalartypes.h +0 -52
  516. numpy-1.9.3/numpy/core/src/multiarray/shape.c +0 -1141
  517. numpy-1.9.3/numpy/core/src/multiarray/ucsnarrow.c +0 -173
  518. numpy-1.9.3/numpy/core/src/npymath/ieee754.c.src +0 -814
  519. numpy-1.9.3/numpy/core/src/npymath/npy_math.c.src +0 -527
  520. numpy-1.9.3/numpy/core/src/npymath/npy_math_complex.c.src +0 -291
  521. numpy-1.9.3/numpy/core/src/npymath/npy_math_private.h +0 -539
  522. numpy-1.9.3/numpy/core/src/npysort/heapsort.c.src +0 -341
  523. numpy-1.9.3/numpy/core/src/npysort/mergesort.c.src +0 -428
  524. numpy-1.9.3/numpy/core/src/npysort/npysort_common.h +0 -367
  525. numpy-1.9.3/numpy/core/src/npysort/quicksort.c.src +0 -363
  526. numpy-1.9.3/numpy/core/src/npysort/selection.c.src +0 -474
  527. numpy-1.9.3/numpy/core/src/private/npy_config.h +0 -68
  528. numpy-1.9.3/numpy/core/src/private/npy_partition.h.src +0 -138
  529. numpy-1.9.3/numpy/core/src/private/npy_sort.h +0 -194
  530. numpy-1.9.3/numpy/core/src/private/scalarmathmodule.h.src +0 -42
  531. numpy-1.9.3/numpy/core/src/private/ufunc_override.h +0 -384
  532. numpy-1.9.3/numpy/core/src/scalarmathmodule.c.src +0 -1980
  533. numpy-1.9.3/numpy/core/src/umath/funcs.inc.src +0 -715
  534. numpy-1.9.3/numpy/core/src/umath/loops.c.src +0 -2654
  535. numpy-1.9.3/numpy/core/src/umath/loops.h.src +0 -501
  536. numpy-1.9.3/numpy/core/src/umath/operand_flag_tests.c.src +0 -105
  537. numpy-1.9.3/numpy/core/src/umath/simd.inc.src +0 -881
  538. numpy-1.9.3/numpy/core/src/umath/test_rational.c.src +0 -1404
  539. numpy-1.9.3/numpy/core/src/umath/ufunc_object.c +0 -5520
  540. numpy-1.9.3/numpy/core/src/umath/ufunc_type_resolution.c +0 -2164
  541. numpy-1.9.3/numpy/core/src/umath/umath_tests.c.src +0 -341
  542. numpy-1.9.3/numpy/core/src/umath/umathmodule.c +0 -561
  543. numpy-1.9.3/numpy/core/tests/test_abc.py +0 -45
  544. numpy-1.9.3/numpy/core/tests/test_api.py +0 -514
  545. numpy-1.9.3/numpy/core/tests/test_arrayprint.py +0 -167
  546. numpy-1.9.3/numpy/core/tests/test_blasdot.py +0 -249
  547. numpy-1.9.3/numpy/core/tests/test_datetime.py +0 -1781
  548. numpy-1.9.3/numpy/core/tests/test_defchararray.py +0 -642
  549. numpy-1.9.3/numpy/core/tests/test_deprecations.py +0 -512
  550. numpy-1.9.3/numpy/core/tests/test_dtype.py +0 -542
  551. numpy-1.9.3/numpy/core/tests/test_einsum.py +0 -583
  552. numpy-1.9.3/numpy/core/tests/test_errstate.py +0 -51
  553. numpy-1.9.3/numpy/core/tests/test_function_base.py +0 -111
  554. numpy-1.9.3/numpy/core/tests/test_getlimits.py +0 -86
  555. numpy-1.9.3/numpy/core/tests/test_half.py +0 -439
  556. numpy-1.9.3/numpy/core/tests/test_indexerrors.py +0 -127
  557. numpy-1.9.3/numpy/core/tests/test_indexing.py +0 -1014
  558. numpy-1.9.3/numpy/core/tests/test_item_selection.py +0 -70
  559. numpy-1.9.3/numpy/core/tests/test_machar.py +0 -30
  560. numpy-1.9.3/numpy/core/tests/test_memmap.py +0 -127
  561. numpy-1.9.3/numpy/core/tests/test_multiarray.py +0 -4645
  562. numpy-1.9.3/numpy/core/tests/test_multiarray_assignment.py +0 -80
  563. numpy-1.9.3/numpy/core/tests/test_nditer.py +0 -2630
  564. numpy-1.9.3/numpy/core/tests/test_numeric.py +0 -2117
  565. numpy-1.9.3/numpy/core/tests/test_numerictypes.py +0 -377
  566. numpy-1.9.3/numpy/core/tests/test_print.py +0 -245
  567. numpy-1.9.3/numpy/core/tests/test_records.py +0 -185
  568. numpy-1.9.3/numpy/core/tests/test_regression.py +0 -2115
  569. numpy-1.9.3/numpy/core/tests/test_scalarinherit.py +0 -34
  570. numpy-1.9.3/numpy/core/tests/test_scalarmath.py +0 -275
  571. numpy-1.9.3/numpy/core/tests/test_shape_base.py +0 -250
  572. numpy-1.9.3/numpy/core/tests/test_ufunc.py +0 -1153
  573. numpy-1.9.3/numpy/core/tests/test_umath.py +0 -1695
  574. numpy-1.9.3/numpy/core/tests/test_umath_complex.py +0 -537
  575. numpy-1.9.3/numpy/core/tests/test_unicode.py +0 -357
  576. numpy-1.9.3/numpy/distutils/__init__.py +0 -39
  577. numpy-1.9.3/numpy/distutils/ccompiler.py +0 -656
  578. numpy-1.9.3/numpy/distutils/command/autodist.py +0 -43
  579. numpy-1.9.3/numpy/distutils/command/build.py +0 -39
  580. numpy-1.9.3/numpy/distutils/command/build_clib.py +0 -284
  581. numpy-1.9.3/numpy/distutils/command/build_ext.py +0 -515
  582. numpy-1.9.3/numpy/distutils/command/config.py +0 -476
  583. numpy-1.9.3/numpy/distutils/exec_command.py +0 -618
  584. numpy-1.9.3/numpy/distutils/fcompiler/compaq.py +0 -128
  585. numpy-1.9.3/numpy/distutils/fcompiler/gnu.py +0 -390
  586. numpy-1.9.3/numpy/distutils/fcompiler/intel.py +0 -205
  587. numpy-1.9.3/numpy/distutils/fcompiler/pg.py +0 -60
  588. numpy-1.9.3/numpy/distutils/fcompiler/sun.py +0 -52
  589. numpy-1.9.3/numpy/distutils/intelccompiler.py +0 -45
  590. numpy-1.9.3/numpy/distutils/lib2def.py +0 -116
  591. numpy-1.9.3/numpy/distutils/mingw32ccompiler.py +0 -582
  592. numpy-1.9.3/numpy/distutils/misc_util.py +0 -2271
  593. numpy-1.9.3/numpy/distutils/npy_pkg_config.py +0 -464
  594. numpy-1.9.3/numpy/distutils/system_info.py +0 -2319
  595. numpy-1.9.3/numpy/distutils/tests/f2py_ext/tests/test_fib2.py +0 -13
  596. numpy-1.9.3/numpy/distutils/tests/f2py_f90_ext/tests/test_foo.py +0 -12
  597. numpy-1.9.3/numpy/distutils/tests/gen_ext/tests/test_fib3.py +0 -12
  598. numpy-1.9.3/numpy/distutils/tests/pyrex_ext/tests/test_primes.py +0 -14
  599. numpy-1.9.3/numpy/distutils/tests/swig_ext/tests/test_example.py +0 -18
  600. numpy-1.9.3/numpy/distutils/tests/swig_ext/tests/test_example2.py +0 -16
  601. numpy-1.9.3/numpy/distutils/tests/test_fcompiler_gnu.py +0 -53
  602. numpy-1.9.3/numpy/distutils/tests/test_fcompiler_intel.py +0 -36
  603. numpy-1.9.3/numpy/distutils/tests/test_misc_util.py +0 -75
  604. numpy-1.9.3/numpy/distutils/tests/test_npy_pkg_config.py +0 -98
  605. numpy-1.9.3/numpy/distutils/unixccompiler.py +0 -113
  606. numpy-1.9.3/numpy/doc/byteswapping.py +0 -147
  607. numpy-1.9.3/numpy/doc/creation.py +0 -144
  608. numpy-1.9.3/numpy/doc/glossary.py +0 -418
  609. numpy-1.9.3/numpy/doc/indexing.py +0 -437
  610. numpy-1.9.3/numpy/doc/structured_arrays.py +0 -223
  611. numpy-1.9.3/numpy/f2py/__init__.py +0 -49
  612. numpy-1.9.3/numpy/f2py/auxfuncs.py +0 -711
  613. numpy-1.9.3/numpy/f2py/capi_maps.py +0 -773
  614. numpy-1.9.3/numpy/f2py/cb_rules.py +0 -539
  615. numpy-1.9.3/numpy/f2py/cfuncs.py +0 -1224
  616. numpy-1.9.3/numpy/f2py/common_rules.py +0 -132
  617. numpy-1.9.3/numpy/f2py/crackfortran.py +0 -2870
  618. numpy-1.9.3/numpy/f2py/diagnose.py +0 -149
  619. numpy-1.9.3/numpy/f2py/f2py2e.py +0 -598
  620. numpy-1.9.3/numpy/f2py/f2py_testing.py +0 -46
  621. numpy-1.9.3/numpy/f2py/f90mod_rules.py +0 -246
  622. numpy-1.9.3/numpy/f2py/func2subr.py +0 -291
  623. numpy-1.9.3/numpy/f2py/rules.py +0 -1448
  624. numpy-1.9.3/numpy/f2py/setup.py +0 -129
  625. numpy-1.9.3/numpy/f2py/src/fortranobject.c +0 -972
  626. numpy-1.9.3/numpy/f2py/src/fortranobject.h +0 -162
  627. numpy-1.9.3/numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +0 -223
  628. numpy-1.9.3/numpy/f2py/tests/test_array_from_pyobj.py +0 -559
  629. numpy-1.9.3/numpy/f2py/tests/test_assumed_shape.py +0 -37
  630. numpy-1.9.3/numpy/f2py/tests/test_callback.py +0 -132
  631. numpy-1.9.3/numpy/f2py/tests/test_kind.py +0 -36
  632. numpy-1.9.3/numpy/f2py/tests/test_mixed.py +0 -41
  633. numpy-1.9.3/numpy/f2py/tests/test_regression.py +0 -32
  634. numpy-1.9.3/numpy/f2py/tests/test_return_character.py +0 -142
  635. numpy-1.9.3/numpy/f2py/tests/test_return_complex.py +0 -169
  636. numpy-1.9.3/numpy/f2py/tests/test_return_integer.py +0 -178
  637. numpy-1.9.3/numpy/f2py/tests/test_return_logical.py +0 -187
  638. numpy-1.9.3/numpy/f2py/tests/test_return_real.py +0 -203
  639. numpy-1.9.3/numpy/f2py/tests/test_size.py +0 -47
  640. numpy-1.9.3/numpy/f2py/tests/util.py +0 -353
  641. numpy-1.9.3/numpy/f2py/use_rules.py +0 -109
  642. numpy-1.9.3/numpy/fft/fftpack.c +0 -1501
  643. numpy-1.9.3/numpy/fft/fftpack.h +0 -28
  644. numpy-1.9.3/numpy/fft/fftpack.py +0 -1169
  645. numpy-1.9.3/numpy/fft/fftpack_litemodule.c +0 -371
  646. numpy-1.9.3/numpy/fft/info.py +0 -179
  647. numpy-1.9.3/numpy/fft/setup.py +0 -20
  648. numpy-1.9.3/numpy/fft/tests/test_fftpack.py +0 -75
  649. numpy-1.9.3/numpy/fft/tests/test_helper.py +0 -78
  650. numpy-1.9.3/numpy/lib/_iotools.py +0 -891
  651. numpy-1.9.3/numpy/lib/arraypad.py +0 -1475
  652. numpy-1.9.3/numpy/lib/arraysetops.py +0 -464
  653. numpy-1.9.3/numpy/lib/arrayterator.py +0 -226
  654. numpy-1.9.3/numpy/lib/financial.py +0 -737
  655. numpy-1.9.3/numpy/lib/format.py +0 -771
  656. numpy-1.9.3/numpy/lib/function_base.py +0 -3884
  657. numpy-1.9.3/numpy/lib/index_tricks.py +0 -869
  658. numpy-1.9.3/numpy/lib/info.py +0 -151
  659. numpy-1.9.3/numpy/lib/nanfunctions.py +0 -1158
  660. numpy-1.9.3/numpy/lib/npyio.py +0 -1871
  661. numpy-1.9.3/numpy/lib/polynomial.py +0 -1271
  662. numpy-1.9.3/numpy/lib/recfunctions.py +0 -1003
  663. numpy-1.9.3/numpy/lib/setup.py +0 -23
  664. numpy-1.9.3/numpy/lib/shape_base.py +0 -865
  665. numpy-1.9.3/numpy/lib/src/_compiled_base.c +0 -1761
  666. numpy-1.9.3/numpy/lib/stride_tricks.py +0 -123
  667. numpy-1.9.3/numpy/lib/tests/test__iotools.py +0 -326
  668. numpy-1.9.3/numpy/lib/tests/test__version.py +0 -57
  669. numpy-1.9.3/numpy/lib/tests/test_arraypad.py +0 -560
  670. numpy-1.9.3/numpy/lib/tests/test_arraysetops.py +0 -301
  671. numpy-1.9.3/numpy/lib/tests/test_financial.py +0 -160
  672. numpy-1.9.3/numpy/lib/tests/test_format.py +0 -716
  673. numpy-1.9.3/numpy/lib/tests/test_function_base.py +0 -2145
  674. numpy-1.9.3/numpy/lib/tests/test_index_tricks.py +0 -289
  675. numpy-1.9.3/numpy/lib/tests/test_io.py +0 -1754
  676. numpy-1.9.3/numpy/lib/tests/test_nanfunctions.py +0 -774
  677. numpy-1.9.3/numpy/lib/tests/test_polynomial.py +0 -177
  678. numpy-1.9.3/numpy/lib/tests/test_recfunctions.py +0 -705
  679. numpy-1.9.3/numpy/lib/tests/test_shape_base.py +0 -368
  680. numpy-1.9.3/numpy/lib/tests/test_stride_tricks.py +0 -238
  681. numpy-1.9.3/numpy/lib/tests/test_twodim_base.py +0 -504
  682. numpy-1.9.3/numpy/lib/tests/test_type_check.py +0 -328
  683. numpy-1.9.3/numpy/lib/twodim_base.py +0 -1003
  684. numpy-1.9.3/numpy/lib/type_check.py +0 -605
  685. numpy-1.9.3/numpy/lib/utils.py +0 -1176
  686. numpy-1.9.3/numpy/linalg/lapack_lite/python_xerbla.c +0 -47
  687. numpy-1.9.3/numpy/linalg/lapack_litemodule.c +0 -362
  688. numpy-1.9.3/numpy/linalg/linalg.py +0 -2136
  689. numpy-1.9.3/numpy/linalg/tests/test_build.py +0 -53
  690. numpy-1.9.3/numpy/linalg/tests/test_linalg.py +0 -1156
  691. numpy-1.9.3/numpy/linalg/tests/test_regression.py +0 -90
  692. numpy-1.9.3/numpy/linalg/umath_linalg.c.src +0 -3210
  693. numpy-1.9.3/numpy/ma/__init__.py +0 -58
  694. numpy-1.9.3/numpy/ma/bench.py +0 -166
  695. numpy-1.9.3/numpy/ma/core.py +0 -7374
  696. numpy-1.9.3/numpy/ma/extras.py +0 -1932
  697. numpy-1.9.3/numpy/ma/mrecords.py +0 -734
  698. numpy-1.9.3/numpy/ma/setup.py +0 -20
  699. numpy-1.9.3/numpy/ma/tests/test_core.py +0 -3706
  700. numpy-1.9.3/numpy/ma/tests/test_extras.py +0 -954
  701. numpy-1.9.3/numpy/ma/tests/test_mrecords.py +0 -521
  702. numpy-1.9.3/numpy/ma/tests/test_old_ma.py +0 -869
  703. numpy-1.9.3/numpy/ma/tests/test_regression.py +0 -75
  704. numpy-1.9.3/numpy/ma/tests/test_subclassing.py +0 -236
  705. numpy-1.9.3/numpy/ma/testutils.py +0 -240
  706. numpy-1.9.3/numpy/ma/timer_comparison.py +0 -459
  707. numpy-1.9.3/numpy/matlib.py +0 -358
  708. numpy-1.9.3/numpy/matrixlib/defmatrix.py +0 -1094
  709. numpy-1.9.3/numpy/matrixlib/tests/test_defmatrix.py +0 -400
  710. numpy-1.9.3/numpy/matrixlib/tests/test_multiarray.py +0 -18
  711. numpy-1.9.3/numpy/matrixlib/tests/test_numeric.py +0 -10
  712. numpy-1.9.3/numpy/matrixlib/tests/test_regression.py +0 -34
  713. numpy-1.9.3/numpy/polynomial/_polybase.py +0 -962
  714. numpy-1.9.3/numpy/polynomial/chebyshev.py +0 -2056
  715. numpy-1.9.3/numpy/polynomial/hermite.py +0 -1789
  716. numpy-1.9.3/numpy/polynomial/hermite_e.py +0 -1786
  717. numpy-1.9.3/numpy/polynomial/laguerre.py +0 -1781
  718. numpy-1.9.3/numpy/polynomial/legendre.py +0 -1809
  719. numpy-1.9.3/numpy/polynomial/polytemplate.py +0 -927
  720. numpy-1.9.3/numpy/polynomial/polyutils.py +0 -403
  721. numpy-1.9.3/numpy/random/mtrand/distributions.c +0 -892
  722. numpy-1.9.3/numpy/random/mtrand/mtrand.c +0 -36656
  723. numpy-1.9.3/numpy/random/mtrand/mtrand.pyx +0 -4706
  724. numpy-1.9.3/numpy/random/setup.py +0 -74
  725. numpy-1.9.3/numpy/random/tests/test_random.py +0 -707
  726. numpy-1.9.3/numpy/random/tests/test_regression.py +0 -86
  727. numpy-1.9.3/numpy/setup.py +0 -27
  728. numpy-1.9.3/numpy/testing/__init__.py +0 -16
  729. numpy-1.9.3/numpy/testing/decorators.py +0 -271
  730. numpy-1.9.3/numpy/testing/noseclasses.py +0 -353
  731. numpy-1.9.3/numpy/testing/nosetester.py +0 -504
  732. numpy-1.9.3/numpy/testing/print_coercion_tables.py +0 -89
  733. numpy-1.9.3/numpy/testing/setup.py +0 -20
  734. numpy-1.9.3/numpy/testing/tests/test_decorators.py +0 -185
  735. numpy-1.9.3/numpy/testing/tests/test_utils.py +0 -558
  736. numpy-1.9.3/numpy/testing/utils.py +0 -1715
  737. numpy-1.9.3/numpy/tests/test_ctypeslib.py +0 -102
  738. numpy-1.9.3/numpy/tests/test_matlib.py +0 -55
  739. numpy-1.9.3/numpy/version.py +0 -10
  740. numpy-1.9.3/setup.py +0 -251
  741. numpy-1.9.3/site.cfg.example +0 -157
  742. numpy-1.9.3/tools/swig/README +0 -135
  743. numpy-1.9.3/tools/swig/numpy.i +0 -3085
  744. numpy-1.9.3/tools/swig/test/Array.i +0 -102
  745. numpy-1.9.3/tools/swig/test/Makefile +0 -34
  746. numpy-1.9.3/tools/swig/test/setup.py +0 -64
  747. numpy-1.9.3/tools/swig/test/testArray.py +0 -284
  748. numpy-1.9.3/tools/swig/test/testFarray.py +0 -159
  749. numpy-1.9.3/tools/swig/test/testFortran.py +0 -173
  750. numpy-1.9.3/tools/swig/test/testMatrix.py +0 -362
  751. numpy-1.9.3/tools/swig/test/testSuperTensor.py +0 -388
  752. numpy-1.9.3/tools/swig/test/testTensor.py +0 -402
  753. numpy-1.9.3/tools/swig/test/testVector.py +0 -381
  754. {numpy-1.9.3 → numpy-1.10.0.post2}/BENTO_BUILD.txt +0 -0
  755. {numpy-1.9.3 → numpy-1.10.0.post2}/COMPATIBILITY +0 -0
  756. {numpy-1.9.3 → numpy-1.10.0.post2}/DEV_README.txt +0 -0
  757. {numpy-1.9.3 → numpy-1.10.0.post2}/README.txt +0 -0
  758. {numpy-1.9.3 → numpy-1.10.0.post2}/THANKS.txt +0 -0
  759. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/Makefile +0 -0
  760. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/BUGS.txt +0 -0
  761. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/FAQ.txt +0 -0
  762. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/HISTORY.txt +0 -0
  763. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/Makefile +0 -0
  764. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/OLDNEWS.txt +0 -0
  765. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/README.txt +0 -0
  766. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/Release-1.x.txt +0 -0
  767. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/Release-2.x.txt +0 -0
  768. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/Release-3.x.txt +0 -0
  769. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/Release-4.x.txt +0 -0
  770. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/TESTING.txt +0 -0
  771. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/THANKS.txt +0 -0
  772. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/TODO.txt +0 -0
  773. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/apps.tex +0 -0
  774. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/bugs.tex +0 -0
  775. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/collectinput.py +0 -0
  776. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/commands.tex +0 -0
  777. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/default.css +0 -0
  778. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/docutils.conf +0 -0
  779. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/arr.f +0 -0
  780. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/bar.f +0 -0
  781. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/foo.f +0 -0
  782. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/foobar-smart.f90 +0 -0
  783. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/foobar.f90 +0 -0
  784. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/foobarmodule.tex +0 -0
  785. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/runme +0 -0
  786. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2py.1 +0 -0
  787. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2py2e.tex +0 -0
  788. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/README.txt +0 -0
  789. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/aerostructure.jpg +0 -0
  790. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/flow.jpg +0 -0
  791. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/mk_html.sh +0 -0
  792. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/mk_pdf.sh +0 -0
  793. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/mk_ps.sh +0 -0
  794. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/exp1.f +0 -0
  795. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/exp1mess.txt +0 -0
  796. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/exp1session.txt +0 -0
  797. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/foo.pyf +0 -0
  798. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/foom.pyf +0 -0
  799. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/structure.jpg +0 -0
  800. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/fortranobject.tex +0 -0
  801. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/hello.f +0 -0
  802. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/index.html +0 -0
  803. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/intro.tex +0 -0
  804. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/array_from_pyobj.c +0 -0
  805. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/bar.c +0 -0
  806. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/foo.f +0 -0
  807. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/fortran_array_from_pyobj.txt +0 -0
  808. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/fun.pyf +0 -0
  809. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/run.pyf +0 -0
  810. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/transpose.txt +0 -0
  811. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarrays.txt +0 -0
  812. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/notes.tex +0 -0
  813. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/oldnews.html +0 -0
  814. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/options.tex +0 -0
  815. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/pyforttest.pyf +0 -0
  816. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/pytest.py +0 -0
  817. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/python9.tex +0 -0
  818. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/signaturefile.tex +0 -0
  819. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/simple.f +0 -0
  820. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/simple_session.dat +0 -0
  821. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/using_F_compiler.txt +0 -0
  822. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/win32_notes.txt +0 -0
  823. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/postprocess.py +0 -0
  824. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.3.0-notes.rst +0 -0
  825. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.4.0-notes.rst +0 -0
  826. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.5.0-notes.rst +0 -0
  827. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.6.0-notes.rst +0 -0
  828. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.6.1-notes.rst +0 -0
  829. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.6.2-notes.rst +0 -0
  830. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.7.0-notes.rst +0 -0
  831. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.7.1-notes.rst +0 -0
  832. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.7.2-notes.rst +0 -0
  833. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.8.0-notes.rst +0 -0
  834. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.8.1-notes.rst +0 -0
  835. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.8.2-notes.rst +0 -0
  836. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.9.0-notes.rst +0 -0
  837. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.9.1-notes.rst +0 -0
  838. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.9.2-notes.rst +0 -0
  839. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/time_based_proposal.rst +0 -0
  840. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/.git +0 -0
  841. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/.gitignore +0 -0
  842. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/Makefile +0 -0
  843. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/README.rst +0 -0
  844. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_static/scipyshiny_small.png +0 -0
  845. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/layout.html +0 -0
  846. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/searchbox.html +0 -0
  847. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/sourcelink.html +0 -0
  848. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/extend.css +0 -0
  849. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/pygments.css +0 -0
  850. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/scipy-central.css +0 -0
  851. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/spc-bootstrap.css +0 -0
  852. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/spc-extend.css +0 -0
  853. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/all-icons.svg +0 -0
  854. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/contents.png +0 -0
  855. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/create-new-account-icon.png +0 -0
  856. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-icon-shrunk.png +0 -0
  857. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-icon.png +0 -0
  858. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-icon.svg +0 -0
  859. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-list-icon-tiniest.png +0 -0
  860. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-list-icon-tiny.png +0 -0
  861. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-list-icon.png +0 -0
  862. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ad.png +0 -0
  863. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ae.png +0 -0
  864. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-af.png +0 -0
  865. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ag.png +0 -0
  866. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ai.png +0 -0
  867. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-al.png +0 -0
  868. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-am.png +0 -0
  869. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ao.png +0 -0
  870. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-aq.png +0 -0
  871. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ar.png +0 -0
  872. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-as.png +0 -0
  873. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-at.png +0 -0
  874. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-au.png +0 -0
  875. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-aw.png +0 -0
  876. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-az.png +0 -0
  877. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ba.png +0 -0
  878. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bb.png +0 -0
  879. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bd.png +0 -0
  880. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-be.png +0 -0
  881. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bf.png +0 -0
  882. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bg.png +0 -0
  883. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bh.png +0 -0
  884. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bi.png +0 -0
  885. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bj.png +0 -0
  886. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bl.png +0 -0
  887. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bm.png +0 -0
  888. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bn.png +0 -0
  889. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bo.png +0 -0
  890. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-br.png +0 -0
  891. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bs.png +0 -0
  892. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bt.png +0 -0
  893. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bw.png +0 -0
  894. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-by.png +0 -0
  895. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bz.png +0 -0
  896. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ca.png +0 -0
  897. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cc.png +0 -0
  898. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cd.png +0 -0
  899. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cf.png +0 -0
  900. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cg.png +0 -0
  901. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ch.png +0 -0
  902. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ci.png +0 -0
  903. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ck.png +0 -0
  904. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cl.png +0 -0
  905. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cm.png +0 -0
  906. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cn.png +0 -0
  907. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-co.png +0 -0
  908. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cr.png +0 -0
  909. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cu.png +0 -0
  910. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cv.png +0 -0
  911. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cw.png +0 -0
  912. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cx.png +0 -0
  913. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cy.png +0 -0
  914. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cz.png +0 -0
  915. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-de.png +0 -0
  916. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-dj.png +0 -0
  917. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-dk.png +0 -0
  918. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-dm.png +0 -0
  919. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-do.png +0 -0
  920. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-dz.png +0 -0
  921. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ec.png +0 -0
  922. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ee.png +0 -0
  923. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-eg.png +0 -0
  924. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-er.png +0 -0
  925. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-es.png +0 -0
  926. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-et.png +0 -0
  927. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fi.png +0 -0
  928. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fj.png +0 -0
  929. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fk.png +0 -0
  930. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fm.png +0 -0
  931. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fo.png +0 -0
  932. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fr.png +0 -0
  933. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ga.png +0 -0
  934. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gb.png +0 -0
  935. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gd.png +0 -0
  936. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ge.png +0 -0
  937. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gf.png +0 -0
  938. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gg.png +0 -0
  939. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gh.png +0 -0
  940. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gi.png +0 -0
  941. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gl.png +0 -0
  942. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gm.png +0 -0
  943. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gn.png +0 -0
  944. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gq.png +0 -0
  945. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gr.png +0 -0
  946. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gs.png +0 -0
  947. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gt.png +0 -0
  948. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gu.png +0 -0
  949. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gw.png +0 -0
  950. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gy.png +0 -0
  951. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hk.png +0 -0
  952. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hm.png +0 -0
  953. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hn.png +0 -0
  954. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hr.png +0 -0
  955. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ht.png +0 -0
  956. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hu.png +0 -0
  957. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-id.png +0 -0
  958. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ie.png +0 -0
  959. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-il.png +0 -0
  960. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-im.png +0 -0
  961. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-in.png +0 -0
  962. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-io.png +0 -0
  963. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-iq.png +0 -0
  964. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ir.png +0 -0
  965. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-is.png +0 -0
  966. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-it.png +0 -0
  967. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-je.png +0 -0
  968. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-jm.png +0 -0
  969. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-jo.png +0 -0
  970. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-jp.png +0 -0
  971. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ke.png +0 -0
  972. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kg.png +0 -0
  973. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kh.png +0 -0
  974. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ki.png +0 -0
  975. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-km.png +0 -0
  976. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kn.png +0 -0
  977. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kp.png +0 -0
  978. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kr.png +0 -0
  979. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kw.png +0 -0
  980. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ky.png +0 -0
  981. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kz.png +0 -0
  982. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-la.png +0 -0
  983. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lb.png +0 -0
  984. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lc.png +0 -0
  985. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-li.png +0 -0
  986. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lk.png +0 -0
  987. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lr.png +0 -0
  988. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ls.png +0 -0
  989. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lt.png +0 -0
  990. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lu.png +0 -0
  991. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lv.png +0 -0
  992. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ly.png +0 -0
  993. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ma.png +0 -0
  994. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mc.png +0 -0
  995. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-md.png +0 -0
  996. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-me.png +0 -0
  997. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mf.png +0 -0
  998. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mg.png +0 -0
  999. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mh.png +0 -0
  1000. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mk.png +0 -0
  1001. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ml.png +0 -0
  1002. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mm.png +0 -0
  1003. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mn.png +0 -0
  1004. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mo.png +0 -0
  1005. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mp.png +0 -0
  1006. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mq.png +0 -0
  1007. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mr.png +0 -0
  1008. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ms.png +0 -0
  1009. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mt.png +0 -0
  1010. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mu.png +0 -0
  1011. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mv.png +0 -0
  1012. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mw.png +0 -0
  1013. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mx.png +0 -0
  1014. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-my.png +0 -0
  1015. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mz.png +0 -0
  1016. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-na.png +0 -0
  1017. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nc.png +0 -0
  1018. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ne.png +0 -0
  1019. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nf.png +0 -0
  1020. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ng.png +0 -0
  1021. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ni.png +0 -0
  1022. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nl.png +0 -0
  1023. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-no.png +0 -0
  1024. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-np.png +0 -0
  1025. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nr.png +0 -0
  1026. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nu.png +0 -0
  1027. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nz.png +0 -0
  1028. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-om.png +0 -0
  1029. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pa.png +0 -0
  1030. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pe.png +0 -0
  1031. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pf.png +0 -0
  1032. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pg.png +0 -0
  1033. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ph.png +0 -0
  1034. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pk.png +0 -0
  1035. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pl.png +0 -0
  1036. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pm.png +0 -0
  1037. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pn.png +0 -0
  1038. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pr.png +0 -0
  1039. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ps.png +0 -0
  1040. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pt.png +0 -0
  1041. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pw.png +0 -0
  1042. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-py.png +0 -0
  1043. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-qa.png +0 -0
  1044. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-re.png +0 -0
  1045. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ro.png +0 -0
  1046. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-rs.png +0 -0
  1047. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ru.png +0 -0
  1048. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-rw.png +0 -0
  1049. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sa.png +0 -0
  1050. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sb.png +0 -0
  1051. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sc.png +0 -0
  1052. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sd.png +0 -0
  1053. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-se.png +0 -0
  1054. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sg.png +0 -0
  1055. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sh.png +0 -0
  1056. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-si.png +0 -0
  1057. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sj.png +0 -0
  1058. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sk.png +0 -0
  1059. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sl.png +0 -0
  1060. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sm.png +0 -0
  1061. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sn.png +0 -0
  1062. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-so.png +0 -0
  1063. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sr.png +0 -0
  1064. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-st.png +0 -0
  1065. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sv.png +0 -0
  1066. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sy.png +0 -0
  1067. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sz.png +0 -0
  1068. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tc.png +0 -0
  1069. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-td.png +0 -0
  1070. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tf.png +0 -0
  1071. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tg.png +0 -0
  1072. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-th.png +0 -0
  1073. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tj.png +0 -0
  1074. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tk.png +0 -0
  1075. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tl.png +0 -0
  1076. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tm.png +0 -0
  1077. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tn.png +0 -0
  1078. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-to.png +0 -0
  1079. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tr.png +0 -0
  1080. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tt.png +0 -0
  1081. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tv.png +0 -0
  1082. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tw.png +0 -0
  1083. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tz.png +0 -0
  1084. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ua.png +0 -0
  1085. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ug.png +0 -0
  1086. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-um.png +0 -0
  1087. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-us.png +0 -0
  1088. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-uy.png +0 -0
  1089. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-uz.png +0 -0
  1090. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-va.png +0 -0
  1091. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vc.png +0 -0
  1092. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ve.png +0 -0
  1093. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vg.png +0 -0
  1094. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vi.png +0 -0
  1095. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vn.png +0 -0
  1096. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vu.png +0 -0
  1097. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-wf.png +0 -0
  1098. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ws.png +0 -0
  1099. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ye.png +0 -0
  1100. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-za.png +0 -0
  1101. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-zm.png +0 -0
  1102. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-zw.png +0 -0
  1103. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/glyphicons-halflings-white.png +0 -0
  1104. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/glyphicons-halflings.png +0 -0
  1105. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/important-icon.png +0 -0
  1106. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/information-icon.png +0 -0
  1107. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/internet-web-browser.png +0 -0
  1108. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-icon-shrunk.png +0 -0
  1109. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-icon.png +0 -0
  1110. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-icon.svg +0 -0
  1111. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-list-icon-tiny.png +0 -0
  1112. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-list-icon.png +0 -0
  1113. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/navigation.png +0 -0
  1114. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/person-list-icon-tiny.png +0 -0
  1115. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/person-list-icon.png +0 -0
  1116. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/scipy-logo.png +0 -0
  1117. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/scipy_org_logo.gif +0 -0
  1118. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/scipycentral_logo.png +0 -0
  1119. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/scipyshiny_small.png +0 -0
  1120. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/send-email-icon.png +0 -0
  1121. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-icon-shrunk.png +0 -0
  1122. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-icon.png +0 -0
  1123. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-icon.svg +0 -0
  1124. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-list-icon-tiniest.png +0 -0
  1125. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-list-icon-tiny.png +0 -0
  1126. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-list-icon.png +0 -0
  1127. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/transparent-pixel.gif +0 -0
  1128. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/ui-anim_basic_16x16.gif +0 -0
  1129. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/js/copybutton.js +0 -0
  1130. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/accordion.less +0 -0
  1131. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/alerts.less +0 -0
  1132. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/bootstrap.less +0 -0
  1133. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/breadcrumbs.less +0 -0
  1134. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/button-groups.less +0 -0
  1135. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/buttons.less +0 -0
  1136. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/carousel.less +0 -0
  1137. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/close.less +0 -0
  1138. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/code.less +0 -0
  1139. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/component-animations.less +0 -0
  1140. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/dropdowns.less +0 -0
  1141. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/forms.less +0 -0
  1142. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/grid.less +0 -0
  1143. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/hero-unit.less +0 -0
  1144. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/labels-badges.less +0 -0
  1145. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/layouts.less +0 -0
  1146. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/media.less +0 -0
  1147. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/mixins.less +0 -0
  1148. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/modals.less +0 -0
  1149. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/navbar.less +0 -0
  1150. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/navs.less +0 -0
  1151. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/pager.less +0 -0
  1152. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/pagination.less +0 -0
  1153. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/popovers.less +0 -0
  1154. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/progress-bars.less +0 -0
  1155. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/reset.less +0 -0
  1156. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-1200px-min.less +0 -0
  1157. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-767px-max.less +0 -0
  1158. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-768px-979px.less +0 -0
  1159. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-navbar.less +0 -0
  1160. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-utilities.less +0 -0
  1161. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive.less +0 -0
  1162. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/scaffolding.less +0 -0
  1163. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/sprites.less +0 -0
  1164. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/tables.less +0 -0
  1165. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/thumbnails.less +0 -0
  1166. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/tooltip.less +0 -0
  1167. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/type.less +0 -0
  1168. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/utilities.less +0 -0
  1169. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/variables.less +0 -0
  1170. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/wells.less +0 -0
  1171. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-bootstrap.less +0 -0
  1172. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-content.less +0 -0
  1173. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-extend.less +0 -0
  1174. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-footer.less +0 -0
  1175. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-header.less +0 -0
  1176. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-rightsidebar.less +0 -0
  1177. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-utils.less +0 -0
  1178. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/scipy.css_t +0 -0
  1179. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/theme.conf +0 -0
  1180. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/conf.py +0 -0
  1181. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/index.rst +0 -0
  1182. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_autodoc.rst +0 -0
  1183. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_autodoc_2.rst +0 -0
  1184. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_autodoc_3.rst +0 -0
  1185. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_autodoc_4.rst +0 -0
  1186. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_optimize.rst +0 -0
  1187. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/_templates/autosummary/class.rst +0 -0
  1188. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/_templates/indexcontent.html +0 -0
  1189. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/_templates/indexsidebar.html +0 -0
  1190. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/_templates/layout.html +0 -0
  1191. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/about.rst +0 -0
  1192. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/bugs.rst +0 -0
  1193. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/contents.rst +0 -0
  1194. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/configure_git.rst +0 -0
  1195. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/development_setup.rst +0 -0
  1196. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/dot2_dot3.rst +0 -0
  1197. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/following_latest.rst +0 -0
  1198. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/forking_button.png +0 -0
  1199. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/git_development.rst +0 -0
  1200. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/git_intro.rst +0 -0
  1201. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/git_resources.rst +0 -0
  1202. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/pull_button.png +0 -0
  1203. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash_links.txt +0 -0
  1204. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/advanced.rst +0 -0
  1205. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/allocarr.f90 +0 -0
  1206. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/allocarr_session.dat +0 -0
  1207. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/array.f +0 -0
  1208. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/array_session.dat +0 -0
  1209. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/calculate.f +0 -0
  1210. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/calculate_session.dat +0 -0
  1211. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/callback.f +0 -0
  1212. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/callback2.pyf +0 -0
  1213. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/callback_session.dat +0 -0
  1214. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/common.f +0 -0
  1215. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/common_session.dat +0 -0
  1216. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/compile_session.dat +0 -0
  1217. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/distutils.rst +0 -0
  1218. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/extcallback.f +0 -0
  1219. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/extcallback_session.dat +0 -0
  1220. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/fib1.f +0 -0
  1221. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/fib1.pyf +0 -0
  1222. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/fib2.pyf +0 -0
  1223. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/fib3.f +0 -0
  1224. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/ftype.f +0 -0
  1225. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/ftype_session.dat +0 -0
  1226. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/getting-started.rst +0 -0
  1227. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/index.rst +0 -0
  1228. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/moddata.f90 +0 -0
  1229. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/moddata_session.dat +0 -0
  1230. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/python-usage.rst +0 -0
  1231. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/run_main_session.dat +0 -0
  1232. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/scalar.f +0 -0
  1233. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/scalar_session.dat +0 -0
  1234. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/setup_example.py +0 -0
  1235. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/signature-file.rst +0 -0
  1236. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/spam.pyf +0 -0
  1237. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/spam_session.dat +0 -0
  1238. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/string.f +0 -0
  1239. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/string_session.dat +0 -0
  1240. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/usage.rst +0 -0
  1241. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/var.pyf +0 -0
  1242. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/var_session.dat +0 -0
  1243. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/glossary.rst +0 -0
  1244. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/license.rst +0 -0
  1245. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/datetime-proposal.rst +0 -0
  1246. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/datetime-proposal3.rst +0 -0
  1247. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/deferred-ufunc-evaluation.rst +0 -0
  1248. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/generalized-ufuncs.rst +0 -0
  1249. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/groupby_additions.rst +0 -0
  1250. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/index.rst +0 -0
  1251. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/math_config_clean.rst +0 -0
  1252. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/missing-data.rst +0 -0
  1253. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/new-iterator-ufunc.rst +0 -0
  1254. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/newbugtracker.rst +0 -0
  1255. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/npy-format.rst +0 -0
  1256. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/structured_array_extensions.rst +0 -0
  1257. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/ufunc-overrides.rst +0 -0
  1258. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/warnfix.rst +0 -0
  1259. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/arrays.datetime.rst +0 -0
  1260. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/arrays.nditer.rst +0 -0
  1261. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/arrays.rst +0 -0
  1262. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/c-api.deprecations.rst +0 -0
  1263. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/c-api.rst +0 -0
  1264. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/distutils.rst +0 -0
  1265. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/figures/dtype-hierarchy.dia +0 -0
  1266. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/figures/dtype-hierarchy.pdf +0 -0
  1267. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/figures/dtype-hierarchy.png +0 -0
  1268. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/figures/threefundamental.fig +0 -0
  1269. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/figures/threefundamental.pdf +0 -0
  1270. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/figures/threefundamental.png +0 -0
  1271. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/internals.rst +0 -0
  1272. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/maskedarray.baseclass.rst +0 -0
  1273. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/maskedarray.generic.rst +0 -0
  1274. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/maskedarray.rst +0 -0
  1275. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.array-creation.rst +0 -0
  1276. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.bitwise.rst +0 -0
  1277. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.char.rst +0 -0
  1278. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.ctypeslib.rst +0 -0
  1279. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.datetime.rst +0 -0
  1280. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.dtype.rst +0 -0
  1281. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.dual.rst +0 -0
  1282. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.emath.rst +0 -0
  1283. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.err.rst +0 -0
  1284. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.fft.rst +0 -0
  1285. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.financial.rst +0 -0
  1286. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.functional.rst +0 -0
  1287. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.help.rst +0 -0
  1288. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.indexing.rst +0 -0
  1289. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.logic.rst +0 -0
  1290. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.math.rst +0 -0
  1291. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.matlib.rst +0 -0
  1292. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.numarray.rst +0 -0
  1293. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.oldnumeric.rst +0 -0
  1294. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.other.rst +0 -0
  1295. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.padding.rst +0 -0
  1296. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.chebyshev.rst +0 -0
  1297. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.classes.rst +0 -0
  1298. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.hermite.rst +0 -0
  1299. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.hermite_e.rst +0 -0
  1300. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.laguerre.rst +0 -0
  1301. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.legendre.rst +0 -0
  1302. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.package.rst +0 -0
  1303. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.poly1d.rst +0 -0
  1304. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.polynomial.rst +0 -0
  1305. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.rst +0 -0
  1306. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.random.rst +0 -0
  1307. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.rst +0 -0
  1308. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.set.rst +0 -0
  1309. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.testing.rst +0 -0
  1310. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.window.rst +0 -0
  1311. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/swig.rst +0 -0
  1312. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.broadcasting.rst +0 -0
  1313. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.byteswapping.rst +0 -0
  1314. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.creation.rst +0 -0
  1315. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.indexing.rst +0 -0
  1316. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.io.rst +0 -0
  1317. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.rst +0 -0
  1318. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.subclassing.rst +0 -0
  1319. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.types.rst +0 -0
  1320. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/c-info.rst +0 -0
  1321. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/howtofind.rst +0 -0
  1322. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/index.rst +0 -0
  1323. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/introduction.rst +0 -0
  1324. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/misc.rst +0 -0
  1325. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/performance.rst +0 -0
  1326. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/whatisnumpy.rst +0 -0
  1327. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/.git +0 -0
  1328. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/.gitignore +0 -0
  1329. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/.travis.yml +0 -0
  1330. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/LICENSE.txt +0 -0
  1331. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/MANIFEST.in +0 -0
  1332. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/README.rst +0 -0
  1333. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/__init__.py +0 -0
  1334. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/comment_eater.py +0 -0
  1335. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/compiler_unparse.py +0 -0
  1336. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/docscrape.py +0 -0
  1337. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/docscrape_sphinx.py +0 -0
  1338. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/linkcode.py +0 -0
  1339. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/numpydoc.py +0 -0
  1340. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/phantom_import.py +0 -0
  1341. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/plot_directive.py +0 -0
  1342. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_docscrape.py +0 -0
  1343. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_linkcode.py +0 -0
  1344. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_phantom_import.py +0 -0
  1345. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_plot_directive.py +0 -0
  1346. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_traitsdoc.py +0 -0
  1347. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/traitsdoc.py +0 -0
  1348. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/setup.py +0 -0
  1349. {numpy-1.9.3/numpy/core/code_generators → numpy-1.10.0.post2/numpy/_build_utils}/__init__.py +0 -0
  1350. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/compat/__init__.py +0 -0
  1351. {numpy-1.9.3/numpy/distutils/tests/f2py_ext → numpy-1.10.0.post2/numpy/core/code_generators}/__init__.py +0 -0
  1352. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/code_generators/genapi.py +0 -0
  1353. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/code_generators/generate_numpy_api.py +0 -0
  1354. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/cversions.py +0 -0
  1355. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/_neighborhood_iterator_imp.h +0 -0
  1356. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/_numpyconfig.h.in +0 -0
  1357. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/arrayobject.h +0 -0
  1358. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/arrayscalars.h +0 -0
  1359. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/halffloat.h +0 -0
  1360. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/noprefix.h +0 -0
  1361. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/npy_1_7_deprecated_api.h +0 -0
  1362. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/npy_interrupt.h +0 -0
  1363. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/npy_no_deprecated_api.h +0 -0
  1364. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/npy_os.h +0 -0
  1365. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/old_defines.h +0 -0
  1366. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/oldnumeric.h +0 -0
  1367. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/ufuncobject.h +0 -0
  1368. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/utils.h +0 -0
  1369. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/info.py +0 -0
  1370. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/mlib.ini.in +0 -0
  1371. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/npymath.ini.in +0 -0
  1372. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/dummymodule.c +0 -0
  1373. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/_datetime.h +0 -0
  1374. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/alloc.h +0 -0
  1375. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/array_assign.c +0 -0
  1376. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/array_assign.h +0 -0
  1377. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/array_assign_array.c +0 -0
  1378. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/array_assign_scalar.c +0 -0
  1379. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/arrayobject.h +0 -0
  1380. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/buffer.h +0 -0
  1381. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/calculation.h +0 -0
  1382. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/conversion_utils.h +0 -0
  1383. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/convert.h +0 -0
  1384. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/convert_datatype.h +0 -0
  1385. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/ctors.h +0 -0
  1386. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/datetime_busday.h +0 -0
  1387. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/datetime_busdaycal.h +0 -0
  1388. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/datetime_strings.h +0 -0
  1389. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/descriptor.h +0 -0
  1390. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/flagsobject.c +0 -0
  1391. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/getset.h +0 -0
  1392. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/hashdescr.h +0 -0
  1393. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/item_selection.h +0 -0
  1394. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/iterators.h +0 -0
  1395. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/methods.h +0 -0
  1396. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/nditer_impl.h +0 -0
  1397. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/nditer_pywrap.h +0 -0
  1398. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/nditer_templ.c.src +0 -0
  1399. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/numpymemoryview.h +0 -0
  1400. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/numpyos.h +0 -0
  1401. {numpy-1.9.3/numpy/core/blasdot → numpy-1.10.0.post2/numpy/core/src/multiarray}/python_xerbla.c +0 -0
  1402. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/refcount.c +0 -0
  1403. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/refcount.h +0 -0
  1404. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/sequence.c +0 -0
  1405. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/sequence.h +0 -0
  1406. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/shape.h +0 -0
  1407. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/ucsnarrow.h +0 -0
  1408. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/usertypes.c +0 -0
  1409. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/usertypes.h +0 -0
  1410. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/npymath/_signbit.c +0 -0
  1411. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/npymath/halffloat.c +0 -0
  1412. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/npymath/npy_math_common.h +0 -0
  1413. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/npysort/binsearch.c.src +0 -0
  1414. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/private/lowlevel_strided_loops.h +0 -0
  1415. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/private/npy_binsearch.h.src +0 -0
  1416. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/private/npy_fpmath.h +0 -0
  1417. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/private/npy_pycompat.h +0 -0
  1418. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/umath/reduction.c +0 -0
  1419. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/umath/reduction.h +0 -0
  1420. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/umath/struct_ufunc_test.c.src +0 -0
  1421. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/umath/ufunc_object.h +0 -0
  1422. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/umath/ufunc_type_resolution.h +0 -0
  1423. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/tests/data/astype_copy.pkl +0 -0
  1424. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/tests/data/recarray_from_file.fits +0 -0
  1425. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/tests/test_scalarprint.py +0 -0
  1426. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/ctypeslib.py +0 -0
  1427. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/__version__.py +0 -0
  1428. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/__init__.py +0 -0
  1429. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/bdist_rpm.py +0 -0
  1430. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/build_py.py +0 -0
  1431. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/build_scripts.py +0 -0
  1432. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/build_src.py +0 -0
  1433. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/config_compiler.py +0 -0
  1434. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/develop.py +0 -0
  1435. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/egg_info.py +0 -0
  1436. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/install.py +0 -0
  1437. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/install_clib.py +0 -0
  1438. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/install_data.py +0 -0
  1439. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/install_headers.py +0 -0
  1440. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/sdist.py +0 -0
  1441. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/compat.py +0 -0
  1442. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/conv_template.py +0 -0
  1443. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/core.py +0 -0
  1444. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/cpuinfo.py +0 -0
  1445. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/environment.py +0 -0
  1446. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/extension.py +0 -0
  1447. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/__init__.py +0 -0
  1448. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/absoft.py +0 -0
  1449. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/g95.py +0 -0
  1450. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/hpux.py +0 -0
  1451. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/ibm.py +0 -0
  1452. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/lahey.py +0 -0
  1453. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/mips.py +0 -0
  1454. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/nag.py +0 -0
  1455. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/none.py +0 -0
  1456. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/pathf95.py +0 -0
  1457. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/vast.py +0 -0
  1458. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/from_template.py +0 -0
  1459. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/info.py +0 -0
  1460. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/line_endings.py +0 -0
  1461. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/log.py +0 -0
  1462. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/mingw/gfortran_vs2003_hack.c +0 -0
  1463. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/numpy_distribution.py +0 -0
  1464. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/pathccompiler.py +0 -0
  1465. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/setup.py +0 -0
  1466. {numpy-1.9.3/numpy/distutils/tests/f2py_f90_ext → numpy-1.10.0.post2/numpy/distutils/tests/f2py_ext}/__init__.py +0 -0
  1467. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_ext/setup.py +0 -0
  1468. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_ext/src/fib1.f +0 -0
  1469. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_ext/src/fib2.pyf +0 -0
  1470. {numpy-1.9.3/numpy/distutils/tests/gen_ext → numpy-1.10.0.post2/numpy/distutils/tests/f2py_f90_ext}/__init__.py +0 -0
  1471. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_f90_ext/include/body.f90 +0 -0
  1472. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_f90_ext/setup.py +0 -0
  1473. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_f90_ext/src/foo_free.f90 +0 -0
  1474. {numpy-1.9.3/numpy/distutils/tests/pyrex_ext → numpy-1.10.0.post2/numpy/distutils/tests/gen_ext}/__init__.py +0 -0
  1475. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/gen_ext/setup.py +0 -0
  1476. {numpy-1.9.3/numpy/distutils/tests/swig_ext → numpy-1.10.0.post2/numpy/distutils/tests/pyrex_ext}/__init__.py +0 -0
  1477. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/pyrex_ext/primes.pyx +0 -0
  1478. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/pyrex_ext/setup.py +0 -0
  1479. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/setup.py +0 -0
  1480. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/setup.py +0 -0
  1481. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/example.c +0 -0
  1482. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/example.i +0 -0
  1483. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/zoo.cc +0 -0
  1484. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/zoo.h +0 -0
  1485. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/zoo.i +0 -0
  1486. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/test_exec_command.py +0 -0
  1487. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/__init__.py +0 -0
  1488. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/basics.py +0 -0
  1489. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/broadcasting.py +0 -0
  1490. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/constants.py +0 -0
  1491. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/howtofind.py +0 -0
  1492. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/internals.py +0 -0
  1493. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/io.py +0 -0
  1494. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/jargon.py +0 -0
  1495. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/methods_vs_functions.py +0 -0
  1496. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/misc.py +0 -0
  1497. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/performance.py +0 -0
  1498. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/subclassing.py +0 -0
  1499. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/ufuncs.py +0 -0
  1500. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/dual.py +0 -0
  1501. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/__version__.py +0 -0
  1502. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/info.py +0 -0
  1503. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/.f2py_f2cmap +0 -0
  1504. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/foo_free.f90 +0 -0
  1505. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/foo_mod.f90 +0 -0
  1506. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/foo_use.f90 +0 -0
  1507. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/precision.f90 +0 -0
  1508. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/kind/foo.f90 +0 -0
  1509. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/mixed/foo.f +0 -0
  1510. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/mixed/foo_fixed.f90 +0 -0
  1511. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/mixed/foo_free.f90 +0 -0
  1512. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/regression/inout.f90 +0 -0
  1513. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/size/foo.f90 +0 -0
  1514. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/fft/__init__.py +0 -0
  1515. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/fft/helper.py +0 -0
  1516. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/__init__.py +0 -0
  1517. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/_datasource.py +0 -0
  1518. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/_version.py +0 -0
  1519. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/scimath.py +0 -0
  1520. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/data/python3.npy +0 -0
  1521. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/data/win64python2.npy +0 -0
  1522. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/test__datasource.py +0 -0
  1523. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/test_arrayterator.py +0 -0
  1524. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/test_regression.py +0 -0
  1525. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/test_ufunclike.py +0 -0
  1526. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/test_utils.py +0 -0
  1527. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/ufunclike.py +0 -0
  1528. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/user_array.py +0 -0
  1529. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/__init__.py +0 -0
  1530. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/info.py +0 -0
  1531. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/blas_lite.c +0 -0
  1532. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/dlamch.c +0 -0
  1533. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/dlapack_lite.c +0 -0
  1534. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/f2c.h +0 -0
  1535. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/f2c_lite.c +0 -0
  1536. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/zlapack_lite.c +0 -0
  1537. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/setup.py +0 -0
  1538. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/tests/test_deprecations.py +0 -0
  1539. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/ma/version.py +0 -0
  1540. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/matrixlib/__init__.py +0 -0
  1541. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/matrixlib/setup.py +0 -0
  1542. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/__init__.py +0 -0
  1543. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/polynomial.py +0 -0
  1544. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/setup.py +0 -0
  1545. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_chebyshev.py +0 -0
  1546. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_classes.py +0 -0
  1547. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_hermite.py +0 -0
  1548. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_hermite_e.py +0 -0
  1549. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_laguerre.py +0 -0
  1550. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_legendre.py +0 -0
  1551. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_polynomial.py +0 -0
  1552. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_polyutils.py +0 -0
  1553. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_printing.py +0 -0
  1554. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/__init__.py +0 -0
  1555. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/info.py +0 -0
  1556. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/Python.pxi +0 -0
  1557. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/distributions.h +0 -0
  1558. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/generate_mtrand_c.py +0 -0
  1559. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/initarray.c +0 -0
  1560. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/initarray.h +0 -0
  1561. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/mtrand_py_helper.h +0 -0
  1562. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/numpy.pxd +0 -0
  1563. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/randomkit.c +0 -0
  1564. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/randomkit.h +0 -0
  1565. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/testing/tests/test_doctesting.py +0 -0
  1566. {numpy-1.9.3 → numpy-1.10.0.post2}/setupegg.py +0 -0
  1567. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/Makefile +0 -0
  1568. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/pyfragments.swg +0 -0
  1569. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Array1.cxx +0 -0
  1570. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Array1.h +0 -0
  1571. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Array2.cxx +0 -0
  1572. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Array2.h +0 -0
  1573. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Farray.cxx +0 -0
  1574. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Farray.h +0 -0
  1575. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Farray.i +0 -0
  1576. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Fortran.cxx +0 -0
  1577. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Fortran.h +0 -0
  1578. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Fortran.i +0 -0
  1579. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Matrix.cxx +0 -0
  1580. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Matrix.h +0 -0
  1581. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Matrix.i +0 -0
  1582. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/SuperTensor.cxx +0 -0
  1583. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/SuperTensor.h +0 -0
  1584. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/SuperTensor.i +0 -0
  1585. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Tensor.cxx +0 -0
  1586. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Tensor.h +0 -0
  1587. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Tensor.i +0 -0
  1588. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Vector.cxx +0 -0
  1589. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Vector.h +0 -0
  1590. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Vector.i +0 -0
@@ -1,2115 +0,0 @@
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 copy
9
- import warnings
10
- import tempfile
11
- from os import path
12
- from io import BytesIO
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
- dt = np.dtype([(('name', 'label'), np.int32, 3)])
53
-
54
- def test_reduce(self,level=rlevel):
55
- """Ticket #40"""
56
- assert_almost_equal(np.add.reduce([1., .5], dtype=None), 1.5)
57
-
58
- def test_zeros_order(self,level=rlevel):
59
- """Ticket #43"""
60
- np.zeros([3], int, 'C')
61
- np.zeros([3], order='C')
62
- np.zeros([3], int, order='C')
63
-
64
- def test_asarray_with_order(self,level=rlevel):
65
- """Check that nothing is done when order='F' and array C/F-contiguous"""
66
- a = np.ones(2)
67
- assert_(a is np.asarray(a, order='F'))
68
-
69
- def test_ravel_with_order(self,level=rlevel):
70
- """Check that ravel works when order='F' and array C/F-contiguous"""
71
- a = np.ones(2)
72
- assert_(not a.ravel('F').flags.owndata)
73
-
74
- def test_sort_bigendian(self,level=rlevel):
75
- """Ticket #47"""
76
- a = np.linspace(0, 10, 11)
77
- c = a.astype(np.dtype('<f8'))
78
- c.sort()
79
- assert_array_almost_equal(c, a)
80
-
81
- def test_negative_nd_indexing(self,level=rlevel):
82
- """Ticket #49"""
83
- c = np.arange(125).reshape((5, 5, 5))
84
- origidx = np.array([-1, 0, 1])
85
- idx = np.array(origidx)
86
- c[idx]
87
- assert_array_equal(idx, origidx)
88
-
89
- def test_char_dump(self,level=rlevel):
90
- """Ticket #50"""
91
- f = BytesIO()
92
- ca = np.char.array(np.arange(1000, 1010), itemsize=4)
93
- ca.dump(f)
94
- f.seek(0)
95
- ca = np.load(f)
96
- f.close()
97
-
98
- def test_noncontiguous_fill(self,level=rlevel):
99
- """Ticket #58."""
100
- a = np.zeros((5, 3))
101
- b = a[:, :2,]
102
- def rs():
103
- b.shape = (10,)
104
- self.assertRaises(AttributeError, rs)
105
-
106
- def test_bool(self,level=rlevel):
107
- """Ticket #60"""
108
- x = np.bool_(1)
109
-
110
- def test_indexing1(self,level=rlevel):
111
- """Ticket #64"""
112
- descr = [('x', [('y', [('z', 'c16', (2,)),]),]),]
113
- buffer = ((([6j, 4j],),),)
114
- h = np.array(buffer, dtype=descr)
115
- h['x']['y']['z']
116
-
117
- def test_indexing2(self,level=rlevel):
118
- """Ticket #65"""
119
- descr = [('x', 'i4', (2,))]
120
- buffer = ([3, 2],)
121
- h = np.array(buffer, dtype=descr)
122
- h['x']
123
-
124
- def test_round(self,level=rlevel):
125
- """Ticket #67"""
126
- x = np.array([1+2j])
127
- assert_almost_equal(x**(-1), [1/(1+2j)])
128
-
129
- def test_scalar_compare(self,level=rlevel):
130
- """Ticket #72"""
131
- a = np.array(['test', 'auto'])
132
- assert_array_equal(a == 'auto', np.array([False, True]))
133
- self.assertTrue(a[1] == 'auto')
134
- self.assertTrue(a[0] != 'auto')
135
- b = np.linspace(0, 10, 11)
136
- self.assertTrue(b != 'auto')
137
- self.assertTrue(b[0] != 'auto')
138
-
139
- def test_unicode_swapping(self,level=rlevel):
140
- """Ticket #79"""
141
- ulen = 1
142
- ucs_value = sixu('\U0010FFFF')
143
- ua = np.array([[[ucs_value*ulen]*2]*3]*4, dtype='U%s' % ulen)
144
- ua2 = ua.newbyteorder()
145
-
146
- def test_object_array_fill(self,level=rlevel):
147
- """Ticket #86"""
148
- x = np.zeros(1, 'O')
149
- x.fill([])
150
-
151
- def test_mem_dtype_align(self,level=rlevel):
152
- """Ticket #93"""
153
- self.assertRaises(TypeError, np.dtype,
154
- {'names':['a'],'formats':['foo']}, align=1)
155
-
156
- @dec.knownfailureif((sys.version_info[0] >= 3) or
157
- (sys.platform == "win32" and
158
- platform.architecture()[0] == "64bit"),
159
- "numpy.intp('0xff', 16) not supported on Py3, "
160
- "as it does not inherit from Python int")
161
- def test_intp(self,level=rlevel):
162
- """Ticket #99"""
163
- i_width = np.int_(0).nbytes*2 - 1
164
- np.intp('0x' + 'f'*i_width, 16)
165
- self.assertRaises(OverflowError, np.intp, '0x' + 'f'*(i_width+1), 16)
166
- self.assertRaises(ValueError, np.intp, '0x1', 32)
167
- assert_equal(255, np.intp('0xFF', 16))
168
- assert_equal(1024, np.intp(1024))
169
-
170
- def test_endian_bool_indexing(self,level=rlevel):
171
- """Ticket #105"""
172
- a = np.arange(10., dtype='>f8')
173
- b = np.arange(10., dtype='<f8')
174
- xa = np.where((a>2) & (a<6))
175
- xb = np.where((b>2) & (b<6))
176
- ya = ((a>2) & (a<6))
177
- yb = ((b>2) & (b<6))
178
- assert_array_almost_equal(xa, ya.nonzero())
179
- assert_array_almost_equal(xb, yb.nonzero())
180
- assert_(np.all(a[ya] > 0.5))
181
- assert_(np.all(b[yb] > 0.5))
182
-
183
- def test_endian_where(self,level=rlevel):
184
- """GitHub issue #369"""
185
- net = np.zeros(3, dtype='>f4')
186
- net[1] = 0.00458849
187
- net[2] = 0.605202
188
- max_net = net.max()
189
- test = np.where(net <= 0., max_net, net)
190
- correct = np.array([ 0.60520202, 0.00458849, 0.60520202])
191
- assert_array_almost_equal(test, correct)
192
-
193
- def test_endian_recarray(self,level=rlevel):
194
- """Ticket #2185"""
195
- dt = np.dtype([
196
- ('head', '>u4'),
197
- ('data', '>u4', 2),
198
- ])
199
- buf = np.recarray(1, dtype=dt)
200
- buf[0]['head'] = 1
201
- buf[0]['data'][:] = [1, 1]
202
-
203
- h = buf[0]['head']
204
- d = buf[0]['data'][0]
205
- buf[0]['head'] = h
206
- buf[0]['data'][0] = d
207
- assert_(buf[0]['head'] == 1)
208
-
209
- def test_mem_dot(self,level=rlevel):
210
- """Ticket #106"""
211
- x = np.random.randn(0, 1)
212
- y = np.random.randn(10, 1)
213
- # Dummy array to detect bad memory access:
214
- _z = np.ones(10)
215
- _dummy = np.empty((0, 10))
216
- z = np.lib.stride_tricks.as_strided(_z, _dummy.shape, _dummy.strides)
217
- np.dot(x, np.transpose(y), out=z)
218
- assert_equal(_z, np.ones(10))
219
- # Do the same for the built-in dot:
220
- np.core.multiarray.dot(x, np.transpose(y), out=z)
221
- assert_equal(_z, np.ones(10))
222
-
223
- def test_arange_endian(self,level=rlevel):
224
- """Ticket #111"""
225
- ref = np.arange(10)
226
- x = np.arange(10, dtype='<f8')
227
- assert_array_equal(ref, x)
228
- x = np.arange(10, dtype='>f8')
229
- assert_array_equal(ref, x)
230
-
231
- # Longfloat support is not consistent enough across
232
- # platforms for this test to be meaningful.
233
- # def test_longfloat_repr(self,level=rlevel):
234
- # """Ticket #112"""
235
- # if np.longfloat(0).itemsize > 8:
236
- # a = np.exp(np.array([1000],dtype=np.longfloat))
237
- # assert_(str(a)[1:9] == str(a[0])[:8])
238
-
239
- def test_argmax(self,level=rlevel):
240
- """Ticket #119"""
241
- a = np.random.normal(0, 1, (4, 5, 6, 7, 8))
242
- for i in range(a.ndim):
243
- aargmax = a.argmax(i)
244
-
245
- def test_mem_divmod(self,level=rlevel):
246
- """Ticket #126"""
247
- for i in range(10):
248
- divmod(np.array([i])[0], 10)
249
-
250
-
251
- def test_hstack_invalid_dims(self,level=rlevel):
252
- """Ticket #128"""
253
- x = np.arange(9).reshape((3, 3))
254
- y = np.array([0, 0, 0])
255
- self.assertRaises(ValueError, np.hstack, (x, y))
256
-
257
- def test_squeeze_type(self,level=rlevel):
258
- """Ticket #133"""
259
- a = np.array([3])
260
- b = np.array(3)
261
- assert_(type(a.squeeze()) is np.ndarray)
262
- assert_(type(b.squeeze()) is np.ndarray)
263
-
264
- def test_add_identity(self,level=rlevel):
265
- """Ticket #143"""
266
- assert_equal(0, np.add.identity)
267
-
268
- def test_numpy_float_python_long_addition(self):
269
- # Check that numpy float and python longs can be added correctly.
270
- a = np.float_(23.) + 2**135
271
- assert_equal(a, 23. + 2**135)
272
-
273
- def test_binary_repr_0(self,level=rlevel):
274
- """Ticket #151"""
275
- assert_equal('0', np.binary_repr(0))
276
-
277
- def test_rec_iterate(self,level=rlevel):
278
- """Ticket #160"""
279
- descr = np.dtype([('i', int), ('f', float), ('s', '|S3')])
280
- x = np.rec.array([(1, 1.1, '1.0'),
281
- (2, 2.2, '2.0')], dtype=descr)
282
- x[0].tolist()
283
- [i for i in x[0]]
284
-
285
- def test_unicode_string_comparison(self,level=rlevel):
286
- """Ticket #190"""
287
- a = np.array('hello', np.unicode_)
288
- b = np.array('world')
289
- a == b
290
-
291
- def test_tobytes_FORTRANORDER_discontiguous(self,level=rlevel):
292
- """Fix in r2836"""
293
- # Create non-contiguous Fortran ordered array
294
- x = np.array(np.random.rand(3, 3), order='F')[:, :2]
295
- assert_array_almost_equal(x.ravel(), np.fromstring(x.tobytes()))
296
-
297
- def test_flat_assignment(self,level=rlevel):
298
- """Correct behaviour of ticket #194"""
299
- x = np.empty((3, 1))
300
- x.flat = np.arange(3)
301
- assert_array_almost_equal(x, [[0], [1], [2]])
302
- x.flat = np.arange(3, dtype=float)
303
- assert_array_almost_equal(x, [[0], [1], [2]])
304
-
305
- def test_broadcast_flat_assignment(self,level=rlevel):
306
- """Ticket #194"""
307
- x = np.empty((3, 1))
308
- def bfa(): x[:] = np.arange(3)
309
- def bfb(): x[:] = np.arange(3, dtype=float)
310
- self.assertRaises(ValueError, bfa)
311
- self.assertRaises(ValueError, bfb)
312
-
313
- def test_nonarray_assignment(self):
314
- # See also Issue gh-2870, test for non-array assignment
315
- # and equivalent unsafe casted array assignment
316
- a = np.arange(10)
317
- b = np.ones(10, dtype=bool)
318
- r = np.arange(10)
319
- def assign(a, b, c):
320
- a[b] = c
321
- assert_raises(ValueError, assign, a, b, np.nan)
322
- a[b] = np.array(np.nan) # but not this.
323
- assert_raises(ValueError, assign, a, r, np.nan)
324
- a[r] = np.array(np.nan)
325
-
326
- def test_unpickle_dtype_with_object(self,level=rlevel):
327
- """Implemented in r2840"""
328
- dt = np.dtype([('x', int), ('y', np.object_), ('z', 'O')])
329
- f = BytesIO()
330
- pickle.dump(dt, f)
331
- f.seek(0)
332
- dt_ = pickle.load(f)
333
- f.close()
334
- assert_equal(dt, dt_)
335
-
336
- def test_mem_array_creation_invalid_specification(self,level=rlevel):
337
- """Ticket #196"""
338
- dt = np.dtype([('x', int), ('y', np.object_)])
339
- # Wrong way
340
- self.assertRaises(ValueError, np.array, [1, 'object'], dt)
341
- # Correct way
342
- np.array([(1, 'object')], dt)
343
-
344
- def test_recarray_single_element(self,level=rlevel):
345
- """Ticket #202"""
346
- a = np.array([1, 2, 3], dtype=np.int32)
347
- b = a.copy()
348
- r = np.rec.array(a, shape=1, formats=['3i4'], names=['d'])
349
- assert_array_equal(a, b)
350
- assert_equal(a, r[0][0])
351
-
352
- def test_zero_sized_array_indexing(self,level=rlevel):
353
- """Ticket #205"""
354
- tmp = np.array([])
355
- def index_tmp(): tmp[np.array(10)]
356
- self.assertRaises(IndexError, index_tmp)
357
-
358
- def test_chararray_rstrip(self,level=rlevel):
359
- """Ticket #222"""
360
- x = np.chararray((1,), 5)
361
- x[0] = asbytes('a ')
362
- x = x.rstrip()
363
- assert_equal(x[0], asbytes('a'))
364
-
365
- def test_object_array_shape(self,level=rlevel):
366
- """Ticket #239"""
367
- assert_equal(np.array([[1, 2], 3, 4], dtype=object).shape, (3,))
368
- assert_equal(np.array([[1, 2], [3, 4]], dtype=object).shape, (2, 2))
369
- assert_equal(np.array([(1, 2), (3, 4)], dtype=object).shape, (2, 2))
370
- assert_equal(np.array([], dtype=object).shape, (0,))
371
- assert_equal(np.array([[], [], []], dtype=object).shape, (3, 0))
372
- assert_equal(np.array([[3, 4], [5, 6], None], dtype=object).shape, (3,))
373
-
374
- def test_mem_around(self,level=rlevel):
375
- """Ticket #243"""
376
- x = np.zeros((1,))
377
- y = [0]
378
- decimal = 6
379
- np.around(abs(x-y), decimal) <= 10.0**(-decimal)
380
-
381
- def test_character_array_strip(self,level=rlevel):
382
- """Ticket #246"""
383
- x = np.char.array(("x", "x ", "x "))
384
- for c in x: assert_equal(c, "x")
385
-
386
- def test_lexsort(self,level=rlevel):
387
- """Lexsort memory error"""
388
- v = np.array([1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
389
- assert_equal(np.lexsort(v), 0)
390
-
391
- def test_lexsort_invalid_sequence(self):
392
- # Issue gh-4123
393
- class BuggySequence(object):
394
- def __len__(self):
395
- return 4
396
- def __getitem__(self, key):
397
- raise KeyError
398
-
399
- assert_raises(KeyError, np.lexsort, BuggySequence())
400
-
401
- def test_pickle_py2_bytes_encoding(self):
402
- # Check that arrays and scalars pickled on Py2 are
403
- # unpickleable on Py3 using encoding='bytes'
404
-
405
- test_data = [
406
- # (original, py2_pickle)
407
- (np.unicode_('\u6f2c'),
408
- asbytes("cnumpy.core.multiarray\nscalar\np0\n(cnumpy\ndtype\np1\n"
409
- "(S'U1'\np2\nI0\nI1\ntp3\nRp4\n(I3\nS'<'\np5\nNNNI4\nI4\n"
410
- "I0\ntp6\nbS',o\\x00\\x00'\np7\ntp8\nRp9\n.")),
411
-
412
- (np.array([9e123], dtype=np.float64),
413
- asbytes("cnumpy.core.multiarray\n_reconstruct\np0\n(cnumpy\nndarray\n"
414
- "p1\n(I0\ntp2\nS'b'\np3\ntp4\nRp5\n(I1\n(I1\ntp6\ncnumpy\ndtype\n"
415
- "p7\n(S'f8'\np8\nI0\nI1\ntp9\nRp10\n(I3\nS'<'\np11\nNNNI-1\nI-1\n"
416
- "I0\ntp12\nbI00\nS'O\\x81\\xb7Z\\xaa:\\xabY'\np13\ntp14\nb.")),
417
-
418
- (np.array([(9e123,)], dtype=[('name', float)]),
419
- asbytes("cnumpy.core.multiarray\n_reconstruct\np0\n(cnumpy\nndarray\np1\n"
420
- "(I0\ntp2\nS'b'\np3\ntp4\nRp5\n(I1\n(I1\ntp6\ncnumpy\ndtype\np7\n"
421
- "(S'V8'\np8\nI0\nI1\ntp9\nRp10\n(I3\nS'|'\np11\nN(S'name'\np12\ntp13\n"
422
- "(dp14\ng12\n(g7\n(S'f8'\np15\nI0\nI1\ntp16\nRp17\n(I3\nS'<'\np18\nNNNI-1\n"
423
- "I-1\nI0\ntp19\nbI0\ntp20\nsI8\nI1\nI0\ntp21\n"
424
- "bI00\nS'O\\x81\\xb7Z\\xaa:\\xabY'\np22\ntp23\nb.")),
425
- ]
426
-
427
- if sys.version_info[:2] >= (3, 4):
428
- # encoding='bytes' was added in Py3.4
429
- for original, data in test_data:
430
- result = pickle.loads(data, encoding='bytes')
431
- assert_equal(result, original)
432
-
433
- if isinstance(result, np.ndarray) and result.dtype.names:
434
- for name in result.dtype.names:
435
- assert_(isinstance(name, str))
436
-
437
- def test_pickle_dtype(self,level=rlevel):
438
- """Ticket #251"""
439
- pickle.dumps(np.float)
440
-
441
- def test_swap_real(self, level=rlevel):
442
- """Ticket #265"""
443
- assert_equal(np.arange(4, dtype='>c8').imag.max(), 0.0)
444
- assert_equal(np.arange(4, dtype='<c8').imag.max(), 0.0)
445
- assert_equal(np.arange(4, dtype='>c8').real.max(), 3.0)
446
- assert_equal(np.arange(4, dtype='<c8').real.max(), 3.0)
447
-
448
- def test_object_array_from_list(self, level=rlevel):
449
- """Ticket #270"""
450
- a = np.array([1, 'A', None])
451
-
452
- def test_multiple_assign(self, level=rlevel):
453
- """Ticket #273"""
454
- a = np.zeros((3, 1), int)
455
- a[[1, 2]] = 1
456
-
457
- def test_empty_array_type(self, level=rlevel):
458
- assert_equal(np.array([]).dtype, np.zeros(0).dtype)
459
-
460
- def test_void_copyswap(self, level=rlevel):
461
- dt = np.dtype([('one', '<i4'), ('two', '<i4')])
462
- x = np.array((1, 2), dtype=dt)
463
- x = x.byteswap()
464
- assert_(x['one'] > 1 and x['two'] > 2)
465
-
466
- def test_method_args(self, level=rlevel):
467
- # Make sure methods and functions have same default axis
468
- # keyword and arguments
469
- funcs1= ['argmax', 'argmin', 'sum', ('product', 'prod'),
470
- ('sometrue', 'any'),
471
- ('alltrue', 'all'), 'cumsum', ('cumproduct', 'cumprod'),
472
- 'ptp', 'cumprod', 'prod', 'std', 'var', 'mean',
473
- 'round', 'min', 'max', 'argsort', 'sort']
474
- funcs2 = ['compress', 'take', 'repeat']
475
-
476
- for func in funcs1:
477
- arr = np.random.rand(8, 7)
478
- arr2 = arr.copy()
479
- if isinstance(func, tuple):
480
- func_meth = func[1]
481
- func = func[0]
482
- else:
483
- func_meth = func
484
- res1 = getattr(arr, func_meth)()
485
- res2 = getattr(np, func)(arr2)
486
- if res1 is None:
487
- res1 = arr
488
-
489
- if res1.dtype.kind in 'uib':
490
- assert_((res1 == res2).all(), func)
491
- else:
492
- assert_(abs(res1-res2).max() < 1e-8, func)
493
-
494
- for func in funcs2:
495
- arr1 = np.random.rand(8, 7)
496
- arr2 = np.random.rand(8, 7)
497
- res1 = None
498
- if func == 'compress':
499
- arr1 = arr1.ravel()
500
- res1 = getattr(arr2, func)(arr1)
501
- else:
502
- arr2 = (15*arr2).astype(int).ravel()
503
- if res1 is None:
504
- res1 = getattr(arr1, func)(arr2)
505
- res2 = getattr(np, func)(arr1, arr2)
506
- assert_(abs(res1-res2).max() < 1e-8, func)
507
-
508
- def test_mem_lexsort_strings(self, level=rlevel):
509
- """Ticket #298"""
510
- lst = ['abc', 'cde', 'fgh']
511
- np.lexsort((lst,))
512
-
513
- def test_fancy_index(self, level=rlevel):
514
- """Ticket #302"""
515
- x = np.array([1, 2])[np.array([0])]
516
- assert_equal(x.shape, (1,))
517
-
518
- def test_recarray_copy(self, level=rlevel):
519
- """Ticket #312"""
520
- dt = [('x', np.int16), ('y', np.float64)]
521
- ra = np.array([(1, 2.3)], dtype=dt)
522
- rb = np.rec.array(ra, dtype=dt)
523
- rb['x'] = 2.
524
- assert_(ra['x'] != rb['x'])
525
-
526
- def test_rec_fromarray(self, level=rlevel):
527
- """Ticket #322"""
528
- x1 = np.array([[1, 2], [3, 4], [5, 6]])
529
- x2 = np.array(['a', 'dd', 'xyz'])
530
- x3 = np.array([1.1, 2, 3])
531
- np.rec.fromarrays([x1, x2, x3], formats="(2,)i4,a3,f8")
532
-
533
- def test_object_array_assign(self, level=rlevel):
534
- x = np.empty((2, 2), object)
535
- x.flat[2] = (1, 2, 3)
536
- assert_equal(x.flat[2], (1, 2, 3))
537
-
538
- def test_ndmin_float64(self, level=rlevel):
539
- """Ticket #324"""
540
- x = np.array([1, 2, 3], dtype=np.float64)
541
- assert_equal(np.array(x, dtype=np.float32, ndmin=2).ndim, 2)
542
- assert_equal(np.array(x, dtype=np.float64, ndmin=2).ndim, 2)
543
-
544
- def test_ndmin_order(self, level=rlevel):
545
- """Issue #465 and related checks"""
546
- assert_(np.array([1, 2], order='C', ndmin=3).flags.c_contiguous)
547
- assert_(np.array([1, 2], order='F', ndmin=3).flags.f_contiguous)
548
- assert_(np.array(np.ones((2, 2), order='F'), ndmin=3).flags.f_contiguous)
549
- assert_(np.array(np.ones((2, 2), order='C'), ndmin=3).flags.c_contiguous)
550
-
551
- def test_mem_axis_minimization(self, level=rlevel):
552
- """Ticket #327"""
553
- data = np.arange(5)
554
- data = np.add.outer(data, data)
555
-
556
- def test_mem_float_imag(self, level=rlevel):
557
- """Ticket #330"""
558
- np.float64(1.0).imag
559
-
560
- def test_dtype_tuple(self, level=rlevel):
561
- """Ticket #334"""
562
- assert_(np.dtype('i4') == np.dtype(('i4', ())))
563
-
564
- def test_dtype_posttuple(self, level=rlevel):
565
- """Ticket #335"""
566
- np.dtype([('col1', '()i4')])
567
-
568
- def test_numeric_carray_compare(self, level=rlevel):
569
- """Ticket #341"""
570
- assert_equal(np.array(['X'], 'c'), asbytes('X'))
571
-
572
- def test_string_array_size(self, level=rlevel):
573
- """Ticket #342"""
574
- self.assertRaises(ValueError,
575
- np.array, [['X'], ['X', 'X', 'X']], '|S1')
576
-
577
- def test_dtype_repr(self, level=rlevel):
578
- """Ticket #344"""
579
- dt1=np.dtype(('uint32', 2))
580
- dt2=np.dtype(('uint32', (2,)))
581
- assert_equal(dt1.__repr__(), dt2.__repr__())
582
-
583
- def test_reshape_order(self, level=rlevel):
584
- """Make sure reshape order works."""
585
- a = np.arange(6).reshape(2, 3, order='F')
586
- assert_equal(a, [[0, 2, 4], [1, 3, 5]])
587
- a = np.array([[1, 2], [3, 4], [5, 6], [7, 8]])
588
- b = a[:, 1]
589
- assert_equal(b.reshape(2, 2, order='F'), [[2, 6], [4, 8]])
590
-
591
- def test_reshape_zero_strides(self, level=rlevel):
592
- """Issue #380, test reshaping of zero strided arrays"""
593
- a = np.ones(1)
594
- a = np.lib.stride_tricks.as_strided(a, shape=(5,), strides=(0,))
595
- assert_(a.reshape(5, 1).strides[0] == 0)
596
-
597
- def test_reshape_zero_size(self, level=rlevel):
598
- """GitHub Issue #2700, setting shape failed for 0-sized arrays"""
599
- a = np.ones((0, 2))
600
- a.shape = (-1, 2)
601
-
602
- # Cannot test if NPY_RELAXED_STRIDES_CHECKING changes the strides.
603
- # With NPY_RELAXED_STRIDES_CHECKING the test becomes superfluous.
604
- @dec.skipif(np.ones(1).strides[0] == np.iinfo(np.intp).max)
605
- def test_reshape_trailing_ones_strides(self):
606
- # GitHub issue gh-2949, bad strides for trailing ones of new shape
607
- a = np.zeros(12, dtype=np.int32)[::2] # not contiguous
608
- strides_c = (16, 8, 8, 8)
609
- strides_f = (8, 24, 48, 48)
610
- assert_equal(a.reshape(3, 2, 1, 1).strides, strides_c)
611
- assert_equal(a.reshape(3, 2, 1, 1, order='F').strides, strides_f)
612
- assert_equal(np.array(0, dtype=np.int32).reshape(1, 1).strides, (4, 4))
613
-
614
- def test_repeat_discont(self, level=rlevel):
615
- """Ticket #352"""
616
- a = np.arange(12).reshape(4, 3)[:, 2]
617
- assert_equal(a.repeat(3), [2, 2, 2, 5, 5, 5, 8, 8, 8, 11, 11, 11])
618
-
619
- def test_array_index(self, level=rlevel):
620
- """Make sure optimization is not called in this case."""
621
- a = np.array([1, 2, 3])
622
- a2 = np.array([[1, 2, 3]])
623
- assert_equal(a[np.where(a==3)], a2[np.where(a2==3)])
624
-
625
- def test_object_argmax(self, level=rlevel):
626
- a = np.array([1, 2, 3], dtype=object)
627
- assert_(a.argmax() == 2)
628
-
629
- def test_recarray_fields(self, level=rlevel):
630
- """Ticket #372"""
631
- dt0 = np.dtype([('f0', 'i4'), ('f1', 'i4')])
632
- dt1 = np.dtype([('f0', 'i8'), ('f1', 'i8')])
633
- for a in [np.array([(1, 2), (3, 4)], "i4,i4"),
634
- np.rec.array([(1, 2), (3, 4)], "i4,i4"),
635
- np.rec.array([(1, 2), (3, 4)]),
636
- np.rec.fromarrays([(1, 2), (3, 4)], "i4,i4"),
637
- np.rec.fromarrays([(1, 2), (3, 4)])]:
638
- assert_(a.dtype in [dt0, dt1])
639
-
640
- def test_random_shuffle(self, level=rlevel):
641
- """Ticket #374"""
642
- a = np.arange(5).reshape((5, 1))
643
- b = a.copy()
644
- np.random.shuffle(b)
645
- assert_equal(np.sort(b, axis=0), a)
646
-
647
- def test_refcount_vdot(self, level=rlevel):
648
- """Changeset #3443"""
649
- _assert_valid_refcount(np.vdot)
650
-
651
- def test_startswith(self, level=rlevel):
652
- ca = np.char.array(['Hi', 'There'])
653
- assert_equal(ca.startswith('H'), [True, False])
654
-
655
- def test_noncommutative_reduce_accumulate(self, level=rlevel):
656
- """Ticket #413"""
657
- tosubtract = np.arange(5)
658
- todivide = np.array([2.0, 0.5, 0.25])
659
- assert_equal(np.subtract.reduce(tosubtract), -10)
660
- assert_equal(np.divide.reduce(todivide), 16.0)
661
- assert_array_equal(np.subtract.accumulate(tosubtract),
662
- np.array([0, -1, -3, -6, -10]))
663
- assert_array_equal(np.divide.accumulate(todivide),
664
- np.array([2., 4., 16.]))
665
-
666
- def test_convolve_empty(self, level=rlevel):
667
- """Convolve should raise an error for empty input array."""
668
- self.assertRaises(ValueError, np.convolve, [], [1])
669
- self.assertRaises(ValueError, np.convolve, [1], [])
670
-
671
- def test_multidim_byteswap(self, level=rlevel):
672
- """Ticket #449"""
673
- r=np.array([(1, (0, 1, 2))], dtype="i2,3i2")
674
- assert_array_equal(r.byteswap(),
675
- np.array([(256, (0, 256, 512))], r.dtype))
676
-
677
- def test_string_NULL(self, level=rlevel):
678
- """Changeset 3557"""
679
- assert_equal(np.array("a\x00\x0b\x0c\x00").item(),
680
- 'a\x00\x0b\x0c')
681
-
682
- def test_junk_in_string_fields_of_recarray(self, level=rlevel):
683
- """Ticket #483"""
684
- r = np.array([[asbytes('abc')]], dtype=[('var1', '|S20')])
685
- assert_(asbytes(r['var1'][0][0]) == asbytes('abc'))
686
-
687
- def test_take_output(self, level=rlevel):
688
- """Ensure that 'take' honours output parameter."""
689
- x = np.arange(12).reshape((3, 4))
690
- a = np.take(x, [0, 2], axis=1)
691
- b = np.zeros_like(a)
692
- np.take(x, [0, 2], axis=1, out=b)
693
- assert_array_equal(a, b)
694
-
695
- def test_take_object_fail(self):
696
- # Issue gh-3001
697
- d = 123.
698
- a = np.array([d, 1], dtype=object)
699
- ref_d = sys.getrefcount(d)
700
- try:
701
- a.take([0, 100])
702
- except IndexError:
703
- pass
704
- assert_(ref_d == sys.getrefcount(d))
705
-
706
- def test_array_str_64bit(self, level=rlevel):
707
- """Ticket #501"""
708
- s = np.array([1, np.nan], dtype=np.float64)
709
- with np.errstate(all='raise'):
710
- sstr = np.array_str(s)
711
-
712
- def test_frompyfunc_endian(self, level=rlevel):
713
- """Ticket #503"""
714
- from math import radians
715
- uradians = np.frompyfunc(radians, 1, 1)
716
- big_endian = np.array([83.4, 83.5], dtype='>f8')
717
- little_endian = np.array([83.4, 83.5], dtype='<f8')
718
- assert_almost_equal(uradians(big_endian).astype(float),
719
- uradians(little_endian).astype(float))
720
-
721
- def test_mem_string_arr(self, level=rlevel):
722
- """Ticket #514"""
723
- s = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
724
- t = []
725
- np.hstack((t, s ))
726
-
727
- def test_arr_transpose(self, level=rlevel):
728
- """Ticket #516"""
729
- x = np.random.rand(*(2,)*16)
730
- y = x.transpose(list(range(16)))
731
-
732
- def test_string_mergesort(self, level=rlevel):
733
- """Ticket #540"""
734
- x = np.array(['a']*32)
735
- assert_array_equal(x.argsort(kind='m'), np.arange(32))
736
-
737
- def test_argmax_byteorder(self, level=rlevel):
738
- """Ticket #546"""
739
- a = np.arange(3, dtype='>f')
740
- assert_(a[a.argmax()] == a.max())
741
-
742
- def test_rand_seed(self, level=rlevel):
743
- """Ticket #555"""
744
- for l in np.arange(4):
745
- np.random.seed(l)
746
-
747
- def test_mem_deallocation_leak(self, level=rlevel):
748
- """Ticket #562"""
749
- a = np.zeros(5, dtype=float)
750
- b = np.array(a, dtype=float)
751
- del a, b
752
-
753
- def test_mem_on_invalid_dtype(self):
754
- "Ticket #583"
755
- self.assertRaises(ValueError, np.fromiter, [['12', ''], ['13', '']], str)
756
-
757
- def test_dot_negative_stride(self, level=rlevel):
758
- """Ticket #588"""
759
- x = np.array([[1, 5, 25, 125., 625]])
760
- y = np.array([[20.], [160.], [640.], [1280.], [1024.]])
761
- z = y[::-1].copy()
762
- y2 = y[::-1]
763
- assert_equal(np.dot(x, z), np.dot(x, y2))
764
-
765
- def test_object_casting(self, level=rlevel):
766
- # This used to trigger the object-type version of
767
- # the bitwise_or operation, because float64 -> object
768
- # casting succeeds
769
- def rs():
770
- x = np.ones([484, 286])
771
- y = np.zeros([484, 286])
772
- x |= y
773
- self.assertRaises(TypeError, rs)
774
-
775
- def test_unicode_scalar(self, level=rlevel):
776
- """Ticket #600"""
777
- x = np.array(["DROND", "DROND1"], dtype="U6")
778
- el = x[1]
779
- new = pickle.loads(pickle.dumps(el))
780
- assert_equal(new, el)
781
-
782
- def test_arange_non_native_dtype(self, level=rlevel):
783
- """Ticket #616"""
784
- for T in ('>f4', '<f4'):
785
- dt = np.dtype(T)
786
- assert_equal(np.arange(0, dtype=dt).dtype, dt)
787
- assert_equal(np.arange(0.5, dtype=dt).dtype, dt)
788
- assert_equal(np.arange(5, dtype=dt).dtype, dt)
789
-
790
- def test_bool_indexing_invalid_nr_elements(self, level=rlevel):
791
- s = np.ones(10, dtype=float)
792
- x = np.array((15,), dtype=float)
793
- def ia(x, s, v): x[(s>0)]=v
794
- # After removing deprecation, the following are ValueErrors.
795
- # This might seem odd as compared to the value error below. This
796
- # is due to the fact that the new code always uses "nonzero" logic
797
- # and the boolean special case is not taken.
798
- self.assertRaises(IndexError, ia, x, s, np.zeros(9, dtype=float))
799
- self.assertRaises(IndexError, ia, x, s, np.zeros(11, dtype=float))
800
- # Old special case (different code path):
801
- self.assertRaises(ValueError, ia, x.flat, s, np.zeros(9, dtype=float))
802
-
803
- def test_mem_scalar_indexing(self, level=rlevel):
804
- """Ticket #603"""
805
- x = np.array([0], dtype=float)
806
- index = np.array(0, dtype=np.int32)
807
- x[index]
808
-
809
- def test_binary_repr_0_width(self, level=rlevel):
810
- assert_equal(np.binary_repr(0, width=3), '000')
811
-
812
- def test_fromstring(self, level=rlevel):
813
- assert_equal(np.fromstring("12:09:09", dtype=int, sep=":"),
814
- [12, 9, 9])
815
-
816
- def test_searchsorted_variable_length(self, level=rlevel):
817
- x = np.array(['a', 'aa', 'b'])
818
- y = np.array(['d', 'e'])
819
- assert_equal(x.searchsorted(y), [3, 3])
820
-
821
- def test_string_argsort_with_zeros(self, level=rlevel):
822
- """Check argsort for strings containing zeros."""
823
- x = np.fromstring("\x00\x02\x00\x01", dtype="|S2")
824
- assert_array_equal(x.argsort(kind='m'), np.array([1, 0]))
825
- assert_array_equal(x.argsort(kind='q'), np.array([1, 0]))
826
-
827
- def test_string_sort_with_zeros(self, level=rlevel):
828
- """Check sort for strings containing zeros."""
829
- x = np.fromstring("\x00\x02\x00\x01", dtype="|S2")
830
- y = np.fromstring("\x00\x01\x00\x02", dtype="|S2")
831
- assert_array_equal(np.sort(x, kind="q"), y)
832
-
833
- def test_copy_detection_zero_dim(self, level=rlevel):
834
- """Ticket #658"""
835
- np.indices((0, 3, 4)).T.reshape(-1, 3)
836
-
837
- def test_flat_byteorder(self, level=rlevel):
838
- """Ticket #657"""
839
- x = np.arange(10)
840
- assert_array_equal(x.astype('>i4'), x.astype('<i4').flat[:])
841
- assert_array_equal(x.astype('>i4').flat[:], x.astype('<i4'))
842
-
843
- def test_uint64_from_negative(self, level=rlevel) :
844
- assert_equal(np.uint64(-2), np.uint64(18446744073709551614))
845
-
846
- def test_sign_bit(self, level=rlevel):
847
- x = np.array([0, -0.0, 0])
848
- assert_equal(str(np.abs(x)), '[ 0. 0. 0.]')
849
-
850
- def test_flat_index_byteswap(self, level=rlevel):
851
- for dt in (np.dtype('<i4'), np.dtype('>i4')):
852
- x = np.array([-1, 0, 1], dtype=dt)
853
- assert_equal(x.flat[0].dtype, x[0].dtype)
854
-
855
- def test_copy_detection_corner_case(self, level=rlevel):
856
- """Ticket #658"""
857
- np.indices((0, 3, 4)).T.reshape(-1, 3)
858
-
859
- # Cannot test if NPY_RELAXED_STRIDES_CHECKING changes the strides.
860
- # With NPY_RELAXED_STRIDES_CHECKING the test becomes superfluous,
861
- # 0-sized reshape itself is tested elsewhere.
862
- @dec.skipif(np.ones(1).strides[0] == np.iinfo(np.intp).max)
863
- def test_copy_detection_corner_case2(self, level=rlevel):
864
- """Ticket #771: strides are not set correctly when reshaping 0-sized
865
- arrays"""
866
- b = np.indices((0, 3, 4)).T.reshape(-1, 3)
867
- assert_equal(b.strides, (3 * b.itemsize, b.itemsize))
868
-
869
- def test_object_array_refcounting(self, level=rlevel):
870
- """Ticket #633"""
871
- if not hasattr(sys, 'getrefcount'):
872
- return
873
-
874
- # NB. this is probably CPython-specific
875
-
876
- cnt = sys.getrefcount
877
-
878
- a = object()
879
- b = object()
880
- c = object()
881
-
882
- cnt0_a = cnt(a)
883
- cnt0_b = cnt(b)
884
- cnt0_c = cnt(c)
885
-
886
- # -- 0d -> 1-d broadcast slice assignment
887
-
888
- arr = np.zeros(5, dtype=np.object_)
889
-
890
- arr[:] = a
891
- assert_equal(cnt(a), cnt0_a + 5)
892
-
893
- arr[:] = b
894
- assert_equal(cnt(a), cnt0_a)
895
- assert_equal(cnt(b), cnt0_b + 5)
896
-
897
- arr[:2] = c
898
- assert_equal(cnt(b), cnt0_b + 3)
899
- assert_equal(cnt(c), cnt0_c + 2)
900
-
901
- del arr
902
-
903
- # -- 1-d -> 2-d broadcast slice assignment
904
-
905
- arr = np.zeros((5, 2), dtype=np.object_)
906
- arr0 = np.zeros(2, dtype=np.object_)
907
-
908
- arr0[0] = a
909
- assert_(cnt(a) == cnt0_a + 1)
910
- arr0[1] = b
911
- assert_(cnt(b) == cnt0_b + 1)
912
-
913
- arr[:,:] = arr0
914
- assert_(cnt(a) == cnt0_a + 6)
915
- assert_(cnt(b) == cnt0_b + 6)
916
-
917
- arr[:, 0] = None
918
- assert_(cnt(a) == cnt0_a + 1)
919
-
920
- del arr, arr0
921
-
922
- # -- 2-d copying + flattening
923
-
924
- arr = np.zeros((5, 2), dtype=np.object_)
925
-
926
- arr[:, 0] = a
927
- arr[:, 1] = b
928
- assert_(cnt(a) == cnt0_a + 5)
929
- assert_(cnt(b) == cnt0_b + 5)
930
-
931
- arr2 = arr.copy()
932
- assert_(cnt(a) == cnt0_a + 10)
933
- assert_(cnt(b) == cnt0_b + 10)
934
-
935
- arr2 = arr[:, 0].copy()
936
- assert_(cnt(a) == cnt0_a + 10)
937
- assert_(cnt(b) == cnt0_b + 5)
938
-
939
- arr2 = arr.flatten()
940
- assert_(cnt(a) == cnt0_a + 10)
941
- assert_(cnt(b) == cnt0_b + 10)
942
-
943
- del arr, arr2
944
-
945
- # -- concatenate, repeat, take, choose
946
-
947
- arr1 = np.zeros((5, 1), dtype=np.object_)
948
- arr2 = np.zeros((5, 1), dtype=np.object_)
949
-
950
- arr1[...] = a
951
- arr2[...] = b
952
- assert_(cnt(a) == cnt0_a + 5)
953
- assert_(cnt(b) == cnt0_b + 5)
954
-
955
- arr3 = np.concatenate((arr1, arr2))
956
- assert_(cnt(a) == cnt0_a + 5 + 5)
957
- assert_(cnt(b) == cnt0_b + 5 + 5)
958
-
959
- arr3 = arr1.repeat(3, axis=0)
960
- assert_(cnt(a) == cnt0_a + 5 + 3*5)
961
-
962
- arr3 = arr1.take([1, 2, 3], axis=0)
963
- assert_(cnt(a) == cnt0_a + 5 + 3)
964
-
965
- x = np.array([[0], [1], [0], [1], [1]], int)
966
- arr3 = x.choose(arr1, arr2)
967
- assert_(cnt(a) == cnt0_a + 5 + 2)
968
- assert_(cnt(b) == cnt0_b + 5 + 3)
969
-
970
- def test_mem_custom_float_to_array(self, level=rlevel):
971
- """Ticket 702"""
972
- class MyFloat(object):
973
- def __float__(self):
974
- return 1.0
975
-
976
- tmp = np.atleast_1d([MyFloat()])
977
- tmp2 = tmp.astype(float)
978
-
979
- def test_object_array_refcount_self_assign(self, level=rlevel):
980
- """Ticket #711"""
981
- class VictimObject(object):
982
- deleted = False
983
- def __del__(self):
984
- self.deleted = True
985
- d = VictimObject()
986
- arr = np.zeros(5, dtype=np.object_)
987
- arr[:] = d
988
- del d
989
- arr[:] = arr # refcount of 'd' might hit zero here
990
- assert_(not arr[0].deleted)
991
- arr[:] = arr # trying to induce a segfault by doing it again...
992
- assert_(not arr[0].deleted)
993
-
994
- def test_mem_fromiter_invalid_dtype_string(self, level=rlevel):
995
- x = [1, 2, 3]
996
- self.assertRaises(ValueError,
997
- np.fromiter, [xi for xi in x], dtype='S')
998
-
999
- def test_reduce_big_object_array(self, level=rlevel):
1000
- """Ticket #713"""
1001
- oldsize = np.setbufsize(10*16)
1002
- a = np.array([None]*161, object)
1003
- assert_(not np.any(a))
1004
- np.setbufsize(oldsize)
1005
-
1006
- def test_mem_0d_array_index(self, level=rlevel):
1007
- """Ticket #714"""
1008
- np.zeros(10)[np.array(0)]
1009
-
1010
- def test_floats_from_string(self, level=rlevel):
1011
- """Ticket #640, floats from string"""
1012
- fsingle = np.single('1.234')
1013
- fdouble = np.double('1.234')
1014
- flongdouble = np.longdouble('1.234')
1015
- assert_almost_equal(fsingle, 1.234)
1016
- assert_almost_equal(fdouble, 1.234)
1017
- assert_almost_equal(flongdouble, 1.234)
1018
-
1019
- def test_nonnative_endian_fill(self, level=rlevel):
1020
- """ Non-native endian arrays were incorrectly filled with scalars before
1021
- r5034.
1022
- """
1023
- if sys.byteorder == 'little':
1024
- dtype = np.dtype('>i4')
1025
- else:
1026
- dtype = np.dtype('<i4')
1027
- x = np.empty([1], dtype=dtype)
1028
- x.fill(1)
1029
- assert_equal(x, np.array([1], dtype=dtype))
1030
-
1031
- def test_dot_alignment_sse2(self, level=rlevel):
1032
- """Test for ticket #551, changeset r5140"""
1033
- x = np.zeros((30, 40))
1034
- y = pickle.loads(pickle.dumps(x))
1035
- # y is now typically not aligned on a 8-byte boundary
1036
- z = np.ones((1, y.shape[0]))
1037
- # This shouldn't cause a segmentation fault:
1038
- np.dot(z, y)
1039
-
1040
- def test_astype_copy(self, level=rlevel):
1041
- """Ticket #788, changeset r5155"""
1042
- # The test data file was generated by scipy.io.savemat.
1043
- # The dtype is float64, but the isbuiltin attribute is 0.
1044
- data_dir = path.join(path.dirname(__file__), 'data')
1045
- filename = path.join(data_dir, "astype_copy.pkl")
1046
- if sys.version_info[0] >= 3:
1047
- f = open(filename, 'rb')
1048
- xp = pickle.load(f, encoding='latin1')
1049
- f.close()
1050
- else:
1051
- f = open(filename)
1052
- xp = pickle.load(f)
1053
- f.close()
1054
- xpd = xp.astype(np.float64)
1055
- assert_((xp.__array_interface__['data'][0] !=
1056
- xpd.__array_interface__['data'][0]))
1057
-
1058
- def test_compress_small_type(self, level=rlevel):
1059
- """Ticket #789, changeset 5217.
1060
- """
1061
- # compress with out argument segfaulted if cannot cast safely
1062
- import numpy as np
1063
- a = np.array([[1, 2], [3, 4]])
1064
- b = np.zeros((2, 1), dtype = np.single)
1065
- try:
1066
- a.compress([True, False], axis = 1, out = b)
1067
- raise AssertionError("compress with an out which cannot be "
1068
- "safely casted should not return "
1069
- "successfully")
1070
- except TypeError:
1071
- pass
1072
-
1073
- def test_attributes(self, level=rlevel):
1074
- """Ticket #791
1075
- """
1076
- class TestArray(np.ndarray):
1077
- def __new__(cls, data, info):
1078
- result = np.array(data)
1079
- result = result.view(cls)
1080
- result.info = info
1081
- return result
1082
- def __array_finalize__(self, obj):
1083
- self.info = getattr(obj, 'info', '')
1084
- dat = TestArray([[1, 2, 3, 4], [5, 6, 7, 8]], 'jubba')
1085
- assert_(dat.info == 'jubba')
1086
- dat.resize((4, 2))
1087
- assert_(dat.info == 'jubba')
1088
- dat.sort()
1089
- assert_(dat.info == 'jubba')
1090
- dat.fill(2)
1091
- assert_(dat.info == 'jubba')
1092
- dat.put([2, 3, 4], [6, 3, 4])
1093
- assert_(dat.info == 'jubba')
1094
- dat.setfield(4, np.int32, 0)
1095
- assert_(dat.info == 'jubba')
1096
- dat.setflags()
1097
- assert_(dat.info == 'jubba')
1098
- assert_(dat.all(1).info == 'jubba')
1099
- assert_(dat.any(1).info == 'jubba')
1100
- assert_(dat.argmax(1).info == 'jubba')
1101
- assert_(dat.argmin(1).info == 'jubba')
1102
- assert_(dat.argsort(1).info == 'jubba')
1103
- assert_(dat.astype(TestArray).info == 'jubba')
1104
- assert_(dat.byteswap().info == 'jubba')
1105
- assert_(dat.clip(2, 7).info == 'jubba')
1106
- assert_(dat.compress([0, 1, 1]).info == 'jubba')
1107
- assert_(dat.conj().info == 'jubba')
1108
- assert_(dat.conjugate().info == 'jubba')
1109
- assert_(dat.copy().info == 'jubba')
1110
- dat2 = TestArray([2, 3, 1, 0], 'jubba')
1111
- choices = [[0, 1, 2, 3], [10, 11, 12, 13],
1112
- [20, 21, 22, 23], [30, 31, 32, 33]]
1113
- assert_(dat2.choose(choices).info == 'jubba')
1114
- assert_(dat.cumprod(1).info == 'jubba')
1115
- assert_(dat.cumsum(1).info == 'jubba')
1116
- assert_(dat.diagonal().info == 'jubba')
1117
- assert_(dat.flatten().info == 'jubba')
1118
- assert_(dat.getfield(np.int32, 0).info == 'jubba')
1119
- assert_(dat.imag.info == 'jubba')
1120
- assert_(dat.max(1).info == 'jubba')
1121
- assert_(dat.mean(1).info == 'jubba')
1122
- assert_(dat.min(1).info == 'jubba')
1123
- assert_(dat.newbyteorder().info == 'jubba')
1124
- assert_(dat.nonzero()[0].info == 'jubba')
1125
- assert_(dat.nonzero()[1].info == 'jubba')
1126
- assert_(dat.prod(1).info == 'jubba')
1127
- assert_(dat.ptp(1).info == 'jubba')
1128
- assert_(dat.ravel().info == 'jubba')
1129
- assert_(dat.real.info == 'jubba')
1130
- assert_(dat.repeat(2).info == 'jubba')
1131
- assert_(dat.reshape((2, 4)).info == 'jubba')
1132
- assert_(dat.round().info == 'jubba')
1133
- assert_(dat.squeeze().info == 'jubba')
1134
- assert_(dat.std(1).info == 'jubba')
1135
- assert_(dat.sum(1).info == 'jubba')
1136
- assert_(dat.swapaxes(0, 1).info == 'jubba')
1137
- assert_(dat.take([2, 3, 5]).info == 'jubba')
1138
- assert_(dat.transpose().info == 'jubba')
1139
- assert_(dat.T.info == 'jubba')
1140
- assert_(dat.var(1).info == 'jubba')
1141
- assert_(dat.view(TestArray).info == 'jubba')
1142
-
1143
- def test_recarray_tolist(self, level=rlevel):
1144
- """Ticket #793, changeset r5215
1145
- """
1146
- # Comparisons fail for NaN, so we can't use random memory
1147
- # for the test.
1148
- buf = np.zeros(40, dtype=np.int8)
1149
- a = np.recarray(2, formats="i4,f8,f8", names="id,x,y", buf=buf)
1150
- b = a.tolist()
1151
- assert_( a[0].tolist() == b[0])
1152
- assert_( a[1].tolist() == b[1])
1153
-
1154
- def test_nonscalar_item_method(self):
1155
- # Make sure that .item() fails graciously when it should
1156
- a = np.arange(5)
1157
- assert_raises(ValueError, a.item)
1158
-
1159
- def test_char_array_creation(self, level=rlevel):
1160
- a = np.array('123', dtype='c')
1161
- b = np.array(asbytes_nested(['1', '2', '3']))
1162
- assert_equal(a, b)
1163
-
1164
- def test_unaligned_unicode_access(self, level=rlevel) :
1165
- """Ticket #825"""
1166
- for i in range(1, 9) :
1167
- msg = 'unicode offset: %d chars'%i
1168
- t = np.dtype([('a', 'S%d'%i), ('b', 'U2')])
1169
- x = np.array([(asbytes('a'), sixu('b'))], dtype=t)
1170
- if sys.version_info[0] >= 3:
1171
- assert_equal(str(x), "[(b'a', 'b')]", err_msg=msg)
1172
- else:
1173
- assert_equal(str(x), "[('a', u'b')]", err_msg=msg)
1174
-
1175
- def test_sign_for_complex_nan(self, level=rlevel):
1176
- """Ticket 794."""
1177
- with np.errstate(invalid='ignore'):
1178
- C = np.array([-np.inf, -2+1j, 0, 2-1j, np.inf, np.nan])
1179
- have = np.sign(C)
1180
- want = np.array([-1+0j, -1+0j, 0+0j, 1+0j, 1+0j, np.nan])
1181
- assert_equal(have, want)
1182
-
1183
- def test_for_equal_names(self, level=rlevel):
1184
- """Ticket #674"""
1185
- dt = np.dtype([('foo', float), ('bar', float)])
1186
- a = np.zeros(10, dt)
1187
- b = list(a.dtype.names)
1188
- b[0] = "notfoo"
1189
- a.dtype.names = b
1190
- assert_(a.dtype.names[0] == "notfoo")
1191
- assert_(a.dtype.names[1] == "bar")
1192
-
1193
- def test_for_object_scalar_creation(self, level=rlevel):
1194
- """Ticket #816"""
1195
- a = np.object_()
1196
- b = np.object_(3)
1197
- b2 = np.object_(3.0)
1198
- c = np.object_([4, 5])
1199
- d = np.object_([None, {}, []])
1200
- assert_(a is None)
1201
- assert_(type(b) is int)
1202
- assert_(type(b2) is float)
1203
- assert_(type(c) is np.ndarray)
1204
- assert_(c.dtype == object)
1205
- assert_(d.dtype == object)
1206
-
1207
- def test_array_resize_method_system_error(self):
1208
- """Ticket #840 - order should be an invalid keyword."""
1209
- x = np.array([[0, 1], [2, 3]])
1210
- self.assertRaises(TypeError, x.resize, (2, 2), order='C')
1211
-
1212
- def test_for_zero_length_in_choose(self, level=rlevel):
1213
- "Ticket #882"
1214
- a = np.array(1)
1215
- self.assertRaises(ValueError, lambda x: x.choose([]), a)
1216
-
1217
- def test_array_ndmin_overflow(self):
1218
- "Ticket #947."
1219
- self.assertRaises(ValueError, lambda: np.array([1], ndmin=33))
1220
-
1221
- def test_errobj_reference_leak(self, level=rlevel):
1222
- """Ticket #955"""
1223
- with np.errstate(all="ignore"):
1224
- z = int(0)
1225
- p = np.int32(-1)
1226
-
1227
- gc.collect()
1228
- n_before = len(gc.get_objects())
1229
- z**p # this shouldn't leak a reference to errobj
1230
- gc.collect()
1231
- n_after = len(gc.get_objects())
1232
- assert_(n_before >= n_after, (n_before, n_after))
1233
-
1234
- def test_void_scalar_with_titles(self, level=rlevel):
1235
- """No ticket"""
1236
- data = [('john', 4), ('mary', 5)]
1237
- dtype1 = [(('source:yy', 'name'), 'O'), (('source:xx', 'id'), int)]
1238
- arr = np.array(data, dtype=dtype1)
1239
- assert_(arr[0][0] == 'john')
1240
- assert_(arr[0][1] == 4)
1241
-
1242
- def test_void_scalar_constructor(self):
1243
- #Issue #1550
1244
-
1245
- #Create test string data, construct void scalar from data and assert
1246
- #that void scalar contains original data.
1247
- test_string = np.array("test")
1248
- test_string_void_scalar = np.core.multiarray.scalar(
1249
- np.dtype(("V", test_string.dtype.itemsize)), test_string.tobytes())
1250
-
1251
- assert_(test_string_void_scalar.view(test_string.dtype) == test_string)
1252
-
1253
- #Create record scalar, construct from data and assert that
1254
- #reconstructed scalar is correct.
1255
- test_record = np.ones((), "i,i")
1256
- test_record_void_scalar = np.core.multiarray.scalar(
1257
- test_record.dtype, test_record.tobytes())
1258
-
1259
- assert_(test_record_void_scalar == test_record)
1260
-
1261
- #Test pickle and unpickle of void and record scalars
1262
- assert_(pickle.loads(pickle.dumps(test_string)) == test_string)
1263
- assert_(pickle.loads(pickle.dumps(test_record)) == test_record)
1264
-
1265
- def test_blasdot_uninitialized_memory(self):
1266
- """Ticket #950"""
1267
- for m in [0, 1, 2]:
1268
- for n in [0, 1, 2]:
1269
- for k in range(3):
1270
- # Try to ensure that x->data contains non-zero floats
1271
- x = np.array([123456789e199], dtype=np.float64)
1272
- x.resize((m, 0))
1273
- y = np.array([123456789e199], dtype=np.float64)
1274
- y.resize((0, n))
1275
-
1276
- # `dot` should just return zero (m,n) matrix
1277
- z = np.dot(x, y)
1278
- assert_(np.all(z == 0))
1279
- assert_(z.shape == (m, n))
1280
-
1281
- def test_zeros(self):
1282
- """Regression test for #1061."""
1283
- # Set a size which cannot fit into a 64 bits signed integer
1284
- sz = 2 ** 64
1285
- good = 'Maximum allowed dimension exceeded'
1286
- try:
1287
- np.empty(sz)
1288
- except ValueError as e:
1289
- if not str(e) == good:
1290
- self.fail("Got msg '%s', expected '%s'" % (e, good))
1291
- except Exception as e:
1292
- self.fail("Got exception of type %s instead of ValueError" % type(e))
1293
-
1294
- def test_huge_arange(self):
1295
- """Regression test for #1062."""
1296
- # Set a size which cannot fit into a 64 bits signed integer
1297
- sz = 2 ** 64
1298
- good = 'Maximum allowed size exceeded'
1299
- try:
1300
- a = np.arange(sz)
1301
- self.assertTrue(np.size == sz)
1302
- except ValueError as e:
1303
- if not str(e) == good:
1304
- self.fail("Got msg '%s', expected '%s'" % (e, good))
1305
- except Exception as e:
1306
- self.fail("Got exception of type %s instead of ValueError" % type(e))
1307
-
1308
- def test_fromiter_bytes(self):
1309
- """Ticket #1058"""
1310
- a = np.fromiter(list(range(10)), dtype='b')
1311
- b = np.fromiter(list(range(10)), dtype='B')
1312
- assert_(np.alltrue(a == np.array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])))
1313
- assert_(np.alltrue(b == np.array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])))
1314
-
1315
- def test_array_from_sequence_scalar_array(self):
1316
- """Ticket #1078: segfaults when creating an array with a sequence of 0d
1317
- arrays."""
1318
- a = np.array((np.ones(2), np.array(2)))
1319
- assert_equal(a.shape, (2,))
1320
- assert_equal(a.dtype, np.dtype(object))
1321
- assert_equal(a[0], np.ones(2))
1322
- assert_equal(a[1], np.array(2))
1323
-
1324
- a = np.array(((1,), np.array(1)))
1325
- assert_equal(a.shape, (2,))
1326
- assert_equal(a.dtype, np.dtype(object))
1327
- assert_equal(a[0], (1,))
1328
- assert_equal(a[1], np.array(1))
1329
-
1330
- def test_array_from_sequence_scalar_array2(self):
1331
- """Ticket #1081: weird array with strange input..."""
1332
- t = np.array([np.array([]), np.array(0, object)])
1333
- assert_equal(t.shape, (2,))
1334
- assert_equal(t.dtype, np.dtype(object))
1335
-
1336
- def test_array_too_big(self):
1337
- """Ticket #1080."""
1338
- assert_raises(ValueError, np.zeros, [975]*7, np.int8)
1339
- assert_raises(ValueError, np.zeros, [26244]*5, np.int8)
1340
-
1341
- def test_dtype_keyerrors_(self):
1342
- """Ticket #1106."""
1343
- dt = np.dtype([('f1', np.uint)])
1344
- assert_raises(KeyError, dt.__getitem__, "f2")
1345
- assert_raises(IndexError, dt.__getitem__, 1)
1346
- assert_raises(ValueError, dt.__getitem__, 0.0)
1347
-
1348
- def test_lexsort_buffer_length(self):
1349
- """Ticket #1217, don't segfault."""
1350
- a = np.ones(100, dtype=np.int8)
1351
- b = np.ones(100, dtype=np.int32)
1352
- i = np.lexsort((a[::-1], b))
1353
- assert_equal(i, np.arange(100, dtype=np.int))
1354
-
1355
- def test_object_array_to_fixed_string(self):
1356
- """Ticket #1235."""
1357
- a = np.array(['abcdefgh', 'ijklmnop'], dtype=np.object_)
1358
- b = np.array(a, dtype=(np.str_, 8))
1359
- assert_equal(a, b)
1360
- c = np.array(a, dtype=(np.str_, 5))
1361
- assert_equal(c, np.array(['abcde', 'ijklm']))
1362
- d = np.array(a, dtype=(np.str_, 12))
1363
- assert_equal(a, d)
1364
- e = np.empty((2, ), dtype=(np.str_, 8))
1365
- e[:] = a[:]
1366
- assert_equal(a, e)
1367
-
1368
- def test_unicode_to_string_cast(self):
1369
- """Ticket #1240."""
1370
- a = np.array(
1371
- [ [sixu('abc'), sixu('\u03a3')],
1372
- [sixu('asdf'), sixu('erw')]
1373
- ], dtype='U')
1374
- def fail():
1375
- b = np.array(a, 'S4')
1376
- self.assertRaises(UnicodeEncodeError, fail)
1377
-
1378
- def test_mixed_string_unicode_array_creation(self):
1379
- a = np.array(['1234', sixu('123')])
1380
- assert_(a.itemsize == 16)
1381
- a = np.array([sixu('123'), '1234'])
1382
- assert_(a.itemsize == 16)
1383
- a = np.array(['1234', sixu('123'), '12345'])
1384
- assert_(a.itemsize == 20)
1385
- a = np.array([sixu('123'), '1234', sixu('12345')])
1386
- assert_(a.itemsize == 20)
1387
- a = np.array([sixu('123'), '1234', sixu('1234')])
1388
- assert_(a.itemsize == 16)
1389
-
1390
- def test_misaligned_objects_segfault(self):
1391
- """Ticket #1198 and #1267"""
1392
- a1 = np.zeros((10,), dtype='O,c')
1393
- a2 = np.array(['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j'], 'S10')
1394
- a1['f0'] = a2
1395
- r = repr(a1)
1396
- np.argmax(a1['f0'])
1397
- a1['f0'][1] = "FOO"
1398
- a1['f0'] = "FOO"
1399
- a3 = np.array(a1['f0'], dtype='S')
1400
- np.nonzero(a1['f0'])
1401
- a1.sort()
1402
- a4 = copy.deepcopy(a1)
1403
-
1404
- def test_misaligned_scalars_segfault(self):
1405
- """Ticket #1267"""
1406
- s1 = np.array(('a', 'Foo'), dtype='c,O')
1407
- s2 = np.array(('b', 'Bar'), dtype='c,O')
1408
- s1['f1'] = s2['f1']
1409
- s1['f1'] = 'Baz'
1410
-
1411
- def test_misaligned_dot_product_objects(self):
1412
- """Ticket #1267"""
1413
- # This didn't require a fix, but it's worth testing anyway, because
1414
- # it may fail if .dot stops enforcing the arrays to be BEHAVED
1415
- a = np.array([[(1, 'a'), (0, 'a')], [(0, 'a'), (1, 'a')]], dtype='O,c')
1416
- b = np.array([[(4, 'a'), (1, 'a')], [(2, 'a'), (2, 'a')]], dtype='O,c')
1417
- np.dot(a['f0'], b['f0'])
1418
-
1419
- def test_byteswap_complex_scalar(self):
1420
- """Ticket #1259 and gh-441"""
1421
- for dtype in [np.dtype('<'+t) for t in np.typecodes['Complex']]:
1422
- z = np.array([2.2-1.1j], dtype)
1423
- x = z[0] # always native-endian
1424
- y = x.byteswap()
1425
- if x.dtype.byteorder == z.dtype.byteorder:
1426
- # little-endian machine
1427
- assert_equal(x, np.fromstring(y.tobytes(), dtype=dtype.newbyteorder()))
1428
- else:
1429
- # big-endian machine
1430
- assert_equal(x, np.fromstring(y.tobytes(), dtype=dtype))
1431
- # double check real and imaginary parts:
1432
- assert_equal(x.real, y.real.byteswap())
1433
- assert_equal(x.imag, y.imag.byteswap())
1434
-
1435
- def test_structured_arrays_with_objects1(self):
1436
- """Ticket #1299"""
1437
- stra = 'aaaa'
1438
- strb = 'bbbb'
1439
- x = np.array([[(0, stra), (1, strb)]], 'i8,O')
1440
- x[x.nonzero()] = x.ravel()[:1]
1441
- assert_(x[0, 1] == x[0, 0])
1442
-
1443
- def test_structured_arrays_with_objects2(self):
1444
- """Ticket #1299 second test"""
1445
- stra = 'aaaa'
1446
- strb = 'bbbb'
1447
- numb = sys.getrefcount(strb)
1448
- numa = sys.getrefcount(stra)
1449
- x = np.array([[(0, stra), (1, strb)]], 'i8,O')
1450
- x[x.nonzero()] = x.ravel()[:1]
1451
- assert_(sys.getrefcount(strb) == numb)
1452
- assert_(sys.getrefcount(stra) == numa + 2)
1453
-
1454
- def test_duplicate_title_and_name(self):
1455
- """Ticket #1254"""
1456
- def func():
1457
- x = np.dtype([(('a', 'a'), 'i'), ('b', 'i')])
1458
- self.assertRaises(ValueError, func)
1459
-
1460
- def test_signed_integer_division_overflow(self):
1461
- """Ticket #1317."""
1462
- def test_type(t):
1463
- min = np.array([np.iinfo(t).min])
1464
- min //= -1
1465
-
1466
- with np.errstate(divide="ignore"):
1467
- for t in (np.int8, np.int16, np.int32, np.int64, np.int, np.long):
1468
- test_type(t)
1469
-
1470
- def test_buffer_hashlib(self):
1471
- try:
1472
- from hashlib import md5
1473
- except ImportError:
1474
- from md5 import new as md5
1475
-
1476
- x = np.array([1, 2, 3], dtype=np.dtype('<i4'))
1477
- assert_equal(md5(x).hexdigest(), '2a1dd1e1e59d0a384c26951e316cd7e6')
1478
-
1479
- def test_0d_string_scalar(self):
1480
- # Bug #1436; the following should succeed
1481
- np.asarray('x', '>c')
1482
-
1483
- def test_log1p_compiler_shenanigans(self):
1484
- # Check if log1p is behaving on 32 bit intel systems.
1485
- assert_(np.isfinite(np.log1p(np.exp2(-53))))
1486
-
1487
- def test_fromiter_comparison(self, level=rlevel):
1488
- a = np.fromiter(list(range(10)), dtype='b')
1489
- b = np.fromiter(list(range(10)), dtype='B')
1490
- assert_(np.alltrue(a == np.array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])))
1491
- assert_(np.alltrue(b == np.array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])))
1492
-
1493
- def test_fromstring_crash(self):
1494
- # Ticket #1345: the following should not cause a crash
1495
- np.fromstring(asbytes('aa, aa, 1.0'), sep=',')
1496
-
1497
- def test_ticket_1539(self):
1498
- dtypes = [x for x in np.typeDict.values()
1499
- if (issubclass(x, np.number)
1500
- and not issubclass(x, np.timedelta64))]
1501
- a = np.array([], dtypes[0])
1502
- failures = []
1503
- # ignore complex warnings
1504
- with warnings.catch_warnings():
1505
- warnings.simplefilter('ignore', np.ComplexWarning)
1506
- for x in dtypes:
1507
- b = a.astype(x)
1508
- for y in dtypes:
1509
- c = a.astype(y)
1510
- try:
1511
- np.dot(b, c)
1512
- except TypeError as e:
1513
- failures.append((x, y))
1514
- if failures:
1515
- raise AssertionError("Failures: %r" % failures)
1516
-
1517
- def test_ticket_1538(self):
1518
- x = np.finfo(np.float32)
1519
- for name in 'eps epsneg max min resolution tiny'.split():
1520
- assert_equal(type(getattr(x, name)), np.float32,
1521
- err_msg=name)
1522
-
1523
- def test_ticket_1434(self):
1524
- # Check that the out= argument in var and std has an effect
1525
- data = np.array(((1, 2, 3), (4, 5, 6), (7, 8, 9)))
1526
- out = np.zeros((3,))
1527
-
1528
- ret = data.var(axis=1, out=out)
1529
- assert_(ret is out)
1530
- assert_array_equal(ret, data.var(axis=1))
1531
-
1532
- ret = data.std(axis=1, out=out)
1533
- assert_(ret is out)
1534
- assert_array_equal(ret, data.std(axis=1))
1535
-
1536
- def test_complex_nan_maximum(self):
1537
- cnan = complex(0, np.nan)
1538
- assert_equal(np.maximum(1, cnan), cnan)
1539
-
1540
- def test_subclass_int_tuple_assignment(self):
1541
- # ticket #1563
1542
- class Subclass(np.ndarray):
1543
- def __new__(cls, i):
1544
- return np.ones((i,)).view(cls)
1545
- x = Subclass(5)
1546
- x[(0,)] = 2 # shouldn't raise an exception
1547
- assert_equal(x[0], 2)
1548
-
1549
- def test_ufunc_no_unnecessary_views(self):
1550
- # ticket #1548
1551
- class Subclass(np.ndarray):
1552
- pass
1553
- x = np.array([1, 2, 3]).view(Subclass)
1554
- y = np.add(x, x, x)
1555
- assert_equal(id(x), id(y))
1556
-
1557
- def test_take_refcount(self):
1558
- # ticket #939
1559
- a = np.arange(16, dtype=np.float)
1560
- a.shape = (4, 4)
1561
- lut = np.ones((5 + 3, 4), np.float)
1562
- rgba = np.empty(shape=a.shape + (4,), dtype=lut.dtype)
1563
- c1 = sys.getrefcount(rgba)
1564
- try:
1565
- lut.take(a, axis=0, mode='clip', out=rgba)
1566
- except TypeError:
1567
- pass
1568
- c2 = sys.getrefcount(rgba)
1569
- assert_equal(c1, c2)
1570
-
1571
- def test_fromfile_tofile_seeks(self):
1572
- # On Python 3, tofile/fromfile used to get (#1610) the Python
1573
- # file handle out of sync
1574
- f0 = tempfile.NamedTemporaryFile()
1575
- f = f0.file
1576
- f.write(np.arange(255, dtype='u1').tobytes())
1577
-
1578
- f.seek(20)
1579
- ret = np.fromfile(f, count=4, dtype='u1')
1580
- assert_equal(ret, np.array([20, 21, 22, 23], dtype='u1'))
1581
- assert_equal(f.tell(), 24)
1582
-
1583
- f.seek(40)
1584
- np.array([1, 2, 3], dtype='u1').tofile(f)
1585
- assert_equal(f.tell(), 43)
1586
-
1587
- f.seek(40)
1588
- data = f.read(3)
1589
- assert_equal(data, asbytes("\x01\x02\x03"))
1590
-
1591
- f.seek(80)
1592
- f.read(4)
1593
- data = np.fromfile(f, dtype='u1', count=4)
1594
- assert_equal(data, np.array([84, 85, 86, 87], dtype='u1'))
1595
-
1596
- f.close()
1597
-
1598
- def test_complex_scalar_warning(self):
1599
- for tp in [np.csingle, np.cdouble, np.clongdouble]:
1600
- x = tp(1+2j)
1601
- assert_warns(np.ComplexWarning, float, x)
1602
- with warnings.catch_warnings():
1603
- warnings.simplefilter('ignore')
1604
- assert_equal(float(x), float(x.real))
1605
-
1606
- def test_complex_scalar_complex_cast(self):
1607
- for tp in [np.csingle, np.cdouble, np.clongdouble]:
1608
- x = tp(1+2j)
1609
- assert_equal(complex(x), 1+2j)
1610
-
1611
- def test_complex_boolean_cast(self):
1612
- """Ticket #2218"""
1613
- for tp in [np.csingle, np.cdouble, np.clongdouble]:
1614
- x = np.array([0, 0+0.5j, 0.5+0j], dtype=tp)
1615
- assert_equal(x.astype(bool), np.array([0, 1, 1], dtype=bool))
1616
- assert_(np.any(x))
1617
- assert_(np.all(x[1:]))
1618
-
1619
- def test_uint_int_conversion(self):
1620
- x = 2**64 - 1
1621
- assert_equal(int(np.uint64(x)), x)
1622
-
1623
- def test_duplicate_field_names_assign(self):
1624
- ra = np.fromiter(((i*3, i*2) for i in range(10)), dtype='i8,f8')
1625
- ra.dtype.names = ('f1', 'f2')
1626
- rep = repr(ra) # should not cause a segmentation fault
1627
- assert_raises(ValueError, setattr, ra.dtype, 'names', ('f1', 'f1'))
1628
-
1629
- def test_eq_string_and_object_array(self):
1630
- # From e-mail thread "__eq__ with str and object" (Keith Goodman)
1631
- a1 = np.array(['a', 'b'], dtype=object)
1632
- a2 = np.array(['a', 'c'])
1633
- assert_array_equal(a1 == a2, [True, False])
1634
- assert_array_equal(a2 == a1, [True, False])
1635
-
1636
- def test_nonzero_byteswap(self):
1637
- a = np.array([0x80000000, 0x00000080, 0], dtype=np.uint32)
1638
- a.dtype = np.float32
1639
- assert_equal(a.nonzero()[0], [1])
1640
- a = a.byteswap().newbyteorder()
1641
- assert_equal(a.nonzero()[0], [1]) # [0] if nonzero() ignores swap
1642
-
1643
- def test_find_common_type_boolean(self):
1644
- # Ticket #1695
1645
- assert_(np.find_common_type([], ['?', '?']) == '?')
1646
-
1647
- def test_empty_mul(self):
1648
- a = np.array([1.])
1649
- a[1:1] *= 2
1650
- assert_equal(a, [1.])
1651
-
1652
- def test_array_side_effect(self):
1653
- assert_equal(np.dtype('S10').itemsize, 10)
1654
-
1655
- A = np.array([['abc', 2], ['long ', '0123456789']], dtype=np.string_)
1656
-
1657
- # This was throwing an exception because in ctors.c,
1658
- # discover_itemsize was calling PyObject_Length without checking
1659
- # the return code. This failed to get the length of the number 2,
1660
- # and the exception hung around until something checked
1661
- # PyErr_Occurred() and returned an error.
1662
- assert_equal(np.dtype('S10').itemsize, 10)
1663
-
1664
- def test_any_float(self):
1665
- # all and any for floats
1666
- a = np.array([0.1, 0.9])
1667
- assert_(np.any(a))
1668
- assert_(np.all(a))
1669
-
1670
- def test_large_float_sum(self):
1671
- a = np.arange(10000, dtype='f')
1672
- assert_equal(a.sum(dtype='d'), a.astype('d').sum())
1673
-
1674
- def test_ufunc_casting_out(self):
1675
- a = np.array(1.0, dtype=np.float32)
1676
- b = np.array(1.0, dtype=np.float64)
1677
- c = np.array(1.0, dtype=np.float32)
1678
- np.add(a, b, out=c)
1679
- assert_equal(c, 2.0)
1680
-
1681
- def test_array_scalar_contiguous(self):
1682
- # Array scalars are both C and Fortran contiguous
1683
- assert_(np.array(1.0).flags.c_contiguous)
1684
- assert_(np.array(1.0).flags.f_contiguous)
1685
- assert_(np.array(np.float32(1.0)).flags.c_contiguous)
1686
- assert_(np.array(np.float32(1.0)).flags.f_contiguous)
1687
-
1688
- def test_squeeze_contiguous(self):
1689
- """Similar to GitHub issue #387"""
1690
- a = np.zeros((1, 2)).squeeze()
1691
- b = np.zeros((2, 2, 2), order='F')[:,:, ::2].squeeze()
1692
- assert_(a.flags.c_contiguous)
1693
- assert_(a.flags.f_contiguous)
1694
- assert_(b.flags.f_contiguous)
1695
-
1696
- def test_reduce_contiguous(self):
1697
- """GitHub issue #387"""
1698
- a = np.add.reduce(np.zeros((2, 1, 2)), (0, 1))
1699
- b = np.add.reduce(np.zeros((2, 1, 2)), 1)
1700
- assert_(a.flags.c_contiguous)
1701
- assert_(a.flags.f_contiguous)
1702
- assert_(b.flags.c_contiguous)
1703
-
1704
- def test_object_array_self_reference(self):
1705
- # Object arrays with references to themselves can cause problems
1706
- a = np.array(0, dtype=object)
1707
- a[()] = a
1708
- assert_raises(TypeError, int, a)
1709
- assert_raises(TypeError, long, a)
1710
- assert_raises(TypeError, float, a)
1711
- assert_raises(TypeError, oct, a)
1712
- assert_raises(TypeError, hex, a)
1713
-
1714
- # Test the same for a circular reference.
1715
- b = np.array(a, dtype=object)
1716
- a[()] = b
1717
- assert_raises(TypeError, int, a)
1718
- # Numpy has no tp_traverse currently, so circular references
1719
- # cannot be detected. So resolve it:
1720
- a[()] = 0
1721
-
1722
- # This was causing a to become like the above
1723
- a = np.array(0, dtype=object)
1724
- a[...] += 1
1725
- assert_equal(a, 1)
1726
-
1727
- def test_object_array_self_copy(self):
1728
- # An object array being copied into itself DECREF'ed before INCREF'ing
1729
- # causing segmentation faults (gh-3787)
1730
- a = np.array(object(), dtype=object)
1731
- np.copyto(a, a)
1732
- assert_equal(sys.getrefcount(a[()]), 2)
1733
- a[()].__class__ # will segfault if object was deleted
1734
-
1735
- def test_zerosize_accumulate(self):
1736
- "Ticket #1733"
1737
- x = np.array([[42, 0]], dtype=np.uint32)
1738
- assert_equal(np.add.accumulate(x[:-1, 0]), [])
1739
-
1740
- def test_objectarray_setfield(self):
1741
- # Setfield directly manipulates the raw array data,
1742
- # so is invalid for object arrays.
1743
- x = np.array([1, 2, 3], dtype=object)
1744
- assert_raises(RuntimeError, x.setfield, 4, np.int32, 0)
1745
-
1746
- def test_setting_rank0_string(self):
1747
- "Ticket #1736"
1748
- s1 = asbytes("hello1")
1749
- s2 = asbytes("hello2")
1750
- a = np.zeros((), dtype="S10")
1751
- a[()] = s1
1752
- assert_equal(a, np.array(s1))
1753
- a[()] = np.array(s2)
1754
- assert_equal(a, np.array(s2))
1755
-
1756
- a = np.zeros((), dtype='f4')
1757
- a[()] = 3
1758
- assert_equal(a, np.array(3))
1759
- a[()] = np.array(4)
1760
- assert_equal(a, np.array(4))
1761
-
1762
- def test_string_astype(self):
1763
- "Ticket #1748"
1764
- s1 = asbytes('black')
1765
- s2 = asbytes('white')
1766
- s3 = asbytes('other')
1767
- a = np.array([[s1], [s2], [s3]])
1768
- assert_equal(a.dtype, np.dtype('S5'))
1769
- b = a.astype(np.dtype('S0'))
1770
- assert_equal(b.dtype, np.dtype('S5'))
1771
-
1772
- def test_ticket_1756(self):
1773
- """Ticket #1756 """
1774
- s = asbytes('0123456789abcdef')
1775
- a = np.array([s]*5)
1776
- for i in range(1, 17):
1777
- a1 = np.array(a, "|S%d"%i)
1778
- a2 = np.array([s[:i]]*5)
1779
- assert_equal(a1, a2)
1780
-
1781
- def test_fields_strides(self):
1782
- "Ticket #1760"
1783
- r=np.fromstring('abcdefghijklmnop'*4*3, dtype='i4,(2,3)u2')
1784
- assert_equal(r[0:3:2]['f1'], r['f1'][0:3:2])
1785
- assert_equal(r[0:3:2]['f1'][0], r[0:3:2][0]['f1'])
1786
- assert_equal(r[0:3:2]['f1'][0][()], r[0:3:2][0]['f1'][()])
1787
- assert_equal(r[0:3:2]['f1'][0].strides, r[0:3:2][0]['f1'].strides)
1788
-
1789
- def test_alignment_update(self):
1790
- """Check that alignment flag is updated on stride setting"""
1791
- a = np.arange(10)
1792
- assert_(a.flags.aligned)
1793
- a.strides = 3
1794
- assert_(not a.flags.aligned)
1795
-
1796
- def test_ticket_1770(self):
1797
- "Should not segfault on python 3k"
1798
- import numpy as np
1799
- try:
1800
- a = np.zeros((1,), dtype=[('f1', 'f')])
1801
- a['f1'] = 1
1802
- a['f2'] = 1
1803
- except ValueError:
1804
- pass
1805
- except:
1806
- raise AssertionError
1807
-
1808
- def test_ticket_1608(self):
1809
- "x.flat shouldn't modify data"
1810
- x = np.array([[1, 2], [3, 4]]).T
1811
- y = np.array(x.flat)
1812
- assert_equal(x, [[1, 3], [2, 4]])
1813
-
1814
- def test_pickle_string_overwrite(self):
1815
- import re
1816
-
1817
- data = np.array([1], dtype='b')
1818
- blob = pickle.dumps(data, protocol=1)
1819
- data = pickle.loads(blob)
1820
-
1821
- # Check that loads does not clobber interned strings
1822
- s = re.sub("a(.)", "\x01\\1", "a_")
1823
- assert_equal(s[0], "\x01")
1824
- data[0] = 0xbb
1825
- s = re.sub("a(.)", "\x01\\1", "a_")
1826
- assert_equal(s[0], "\x01")
1827
-
1828
- def test_pickle_bytes_overwrite(self):
1829
- if sys.version_info[0] >= 3:
1830
- data = np.array([1], dtype='b')
1831
- data = pickle.loads(pickle.dumps(data))
1832
- data[0] = 0xdd
1833
- bytestring = "\x01 ".encode('ascii')
1834
- assert_equal(bytestring[0:1], '\x01'.encode('ascii'))
1835
-
1836
- def test_pickle_py2_array_latin1_hack(self):
1837
- # Check that unpickling hacks in Py3 that support
1838
- # encoding='latin1' work correctly.
1839
-
1840
- # Python2 output for pickle.dumps(numpy.array([129], dtype='b'))
1841
- data = asbytes("cnumpy.core.multiarray\n_reconstruct\np0\n(cnumpy\nndarray\np1\n(I0\n"
1842
- "tp2\nS'b'\np3\ntp4\nRp5\n(I1\n(I1\ntp6\ncnumpy\ndtype\np7\n(S'i1'\np8\n"
1843
- "I0\nI1\ntp9\nRp10\n(I3\nS'|'\np11\nNNNI-1\nI-1\nI0\ntp12\nbI00\nS'\\x81'\n"
1844
- "p13\ntp14\nb.")
1845
- if sys.version_info[0] >= 3:
1846
- # This should work:
1847
- result = pickle.loads(data, encoding='latin1')
1848
- assert_array_equal(result, np.array([129], dtype='b'))
1849
- # Should not segfault:
1850
- assert_raises(Exception, pickle.loads, data, encoding='koi8-r')
1851
-
1852
- def test_pickle_py2_scalar_latin1_hack(self):
1853
- # Check that scalar unpickling hack in Py3 that supports
1854
- # encoding='latin1' work correctly.
1855
-
1856
- # Python2 output for pickle.dumps(...)
1857
- datas = [
1858
- # (original, python2_pickle, koi8r_validity)
1859
- (np.unicode_('\u6bd2'),
1860
- asbytes("cnumpy.core.multiarray\nscalar\np0\n(cnumpy\ndtype\np1\n"
1861
- "(S'U1'\np2\nI0\nI1\ntp3\nRp4\n(I3\nS'<'\np5\nNNNI4\nI4\nI0\n"
1862
- "tp6\nbS'\\xd2k\\x00\\x00'\np7\ntp8\nRp9\n."),
1863
- 'invalid'),
1864
-
1865
- (np.float64(9e123),
1866
- asbytes("cnumpy.core.multiarray\nscalar\np0\n(cnumpy\ndtype\np1\n(S'f8'\n"
1867
- "p2\nI0\nI1\ntp3\nRp4\n(I3\nS'<'\np5\nNNNI-1\nI-1\nI0\ntp6\n"
1868
- "bS'O\\x81\\xb7Z\\xaa:\\xabY'\np7\ntp8\nRp9\n."),
1869
- 'invalid'),
1870
-
1871
- (np.bytes_(asbytes('\x9c')), # different 8-bit code point in KOI8-R vs latin1
1872
- asbytes("cnumpy.core.multiarray\nscalar\np0\n(cnumpy\ndtype\np1\n(S'S1'\np2\n"
1873
- "I0\nI1\ntp3\nRp4\n(I3\nS'|'\np5\nNNNI1\nI1\nI0\ntp6\nbS'\\x9c'\np7\n"
1874
- "tp8\nRp9\n."),
1875
- 'different'),
1876
- ]
1877
- if sys.version_info[0] >= 3:
1878
- for original, data, koi8r_validity in datas:
1879
- result = pickle.loads(data, encoding='latin1')
1880
- assert_equal(result, original)
1881
-
1882
- # Decoding under non-latin1 encoding (e.g.) KOI8-R can
1883
- # produce bad results, but should not segfault.
1884
- if koi8r_validity == 'different':
1885
- # Unicode code points happen to lie within latin1,
1886
- # but are different in koi8-r, resulting to silent
1887
- # bogus results
1888
- result = pickle.loads(data, encoding='koi8-r')
1889
- assert_(result != original)
1890
- elif koi8r_validity == 'invalid':
1891
- # Unicode code points outside latin1, so results
1892
- # to an encoding exception
1893
- assert_raises(ValueError, pickle.loads, data, encoding='koi8-r')
1894
- else:
1895
- raise ValueError(koi8r_validity)
1896
-
1897
- def test_structured_type_to_object(self):
1898
- a_rec = np.array([(0, 1), (3, 2)], dtype='i4,i8')
1899
- a_obj = np.empty((2,), dtype=object)
1900
- a_obj[0] = (0, 1)
1901
- a_obj[1] = (3, 2)
1902
- # astype records -> object
1903
- assert_equal(a_rec.astype(object), a_obj)
1904
- # '=' records -> object
1905
- b = np.empty_like(a_obj)
1906
- b[...] = a_rec
1907
- assert_equal(b, a_obj)
1908
- # '=' object -> records
1909
- b = np.empty_like(a_rec)
1910
- b[...] = a_obj
1911
- assert_equal(b, a_rec)
1912
-
1913
- def test_assign_obj_listoflists(self):
1914
- # Ticket # 1870
1915
- # The inner list should get assigned to the object elements
1916
- a = np.zeros(4, dtype=object)
1917
- b = a.copy()
1918
- a[0] = [1]
1919
- a[1] = [2]
1920
- a[2] = [3]
1921
- a[3] = [4]
1922
- b[...] = [[1], [2], [3], [4]]
1923
- assert_equal(a, b)
1924
- # The first dimension should get broadcast
1925
- a = np.zeros((2, 2), dtype=object)
1926
- a[...] = [[1, 2]]
1927
- assert_equal(a, [[1, 2], [1, 2]])
1928
-
1929
- def test_memoryleak(self):
1930
- # Ticket #1917 - ensure that array data doesn't leak
1931
- for i in range(1000):
1932
- # 100MB times 1000 would give 100GB of memory usage if it leaks
1933
- a = np.empty((100000000,), dtype='i1')
1934
- del a
1935
-
1936
- def test_ufunc_reduce_memoryleak(self):
1937
- a = np.arange(6)
1938
- acnt = sys.getrefcount(a)
1939
- res = np.add.reduce(a)
1940
- assert_equal(sys.getrefcount(a), acnt)
1941
-
1942
- def test_search_sorted_invalid_arguments(self):
1943
- # Ticket #2021, should not segfault.
1944
- x = np.arange(0, 4, dtype='datetime64[D]')
1945
- assert_raises(TypeError, x.searchsorted, 1)
1946
-
1947
- def test_string_truncation(self):
1948
- # Ticket #1990 - Data can be truncated in creation of an array from a
1949
- # mixed sequence of numeric values and strings
1950
- for val in [True, 1234, 123.4, complex(1, 234)]:
1951
- for tostr in [asunicode, asbytes]:
1952
- b = np.array([val, tostr('xx')])
1953
- assert_equal(tostr(b[0]), tostr(val))
1954
- b = np.array([tostr('xx'), val])
1955
- assert_equal(tostr(b[1]), tostr(val))
1956
-
1957
- # test also with longer strings
1958
- b = np.array([val, tostr('xxxxxxxxxx')])
1959
- assert_equal(tostr(b[0]), tostr(val))
1960
- b = np.array([tostr('xxxxxxxxxx'), val])
1961
- assert_equal(tostr(b[1]), tostr(val))
1962
-
1963
- def test_string_truncation_ucs2(self):
1964
- # Ticket #2081. Python compiled with two byte unicode
1965
- # can lead to truncation if itemsize is not properly
1966
- # adjusted for Numpy's four byte unicode.
1967
- if sys.version_info[0] >= 3:
1968
- a = np.array(['abcd'])
1969
- else:
1970
- a = np.array([sixu('abcd')])
1971
- assert_equal(a.dtype.itemsize, 16)
1972
-
1973
- def test_unique_stable(self):
1974
- # Ticket #2063 must always choose stable sort for argsort to
1975
- # get consistent results
1976
- v = np.array(([0]*5 + [1]*6 + [2]*6)*4)
1977
- res = np.unique(v, return_index=True)
1978
- tgt = (np.array([0, 1, 2]), np.array([ 0, 5, 11]))
1979
- assert_equal(res, tgt)
1980
-
1981
- def test_unicode_alloc_dealloc_match(self):
1982
- # Ticket #1578, the mismatch only showed up when running
1983
- # python-debug for python versions >= 2.7, and then as
1984
- # a core dump and error message.
1985
- a = np.array(['abc'], dtype=np.unicode)[0]
1986
- del a
1987
-
1988
- def test_refcount_error_in_clip(self):
1989
- # Ticket #1588
1990
- a = np.zeros((2,), dtype='>i2').clip(min=0)
1991
- x = a + a
1992
- # This used to segfault:
1993
- y = str(x)
1994
- # Check the final string:
1995
- assert_(y == "[0 0]")
1996
-
1997
- def test_searchsorted_wrong_dtype(self):
1998
- # Ticket #2189, it used to segfault, so we check that it raises the
1999
- # proper exception.
2000
- a = np.array([('a', 1)], dtype='S1, int')
2001
- assert_raises(TypeError, np.searchsorted, a, 1.2)
2002
- # Ticket #2066, similar problem:
2003
- dtype = np.format_parser(['i4', 'i4'], [], [])
2004
- a = np.recarray((2, ), dtype)
2005
- assert_raises(TypeError, np.searchsorted, a, 1)
2006
-
2007
- def test_complex64_alignment(self):
2008
- # Issue gh-2668 (trac 2076), segfault on sparc due to misalignment
2009
- dtt = np.complex64
2010
- arr = np.arange(10, dtype=dtt)
2011
- # 2D array
2012
- arr2 = np.reshape(arr, (2, 5))
2013
- # Fortran write followed by (C or F) read caused bus error
2014
- data_str = arr2.tobytes('F')
2015
- data_back = np.ndarray(arr2.shape,
2016
- arr2.dtype,
2017
- buffer=data_str,
2018
- order='F')
2019
- assert_array_equal(arr2, data_back)
2020
-
2021
- def test_structured_count_nonzero(self):
2022
- arr = np.array([0, 1]).astype('i4, (2)i4')[:1]
2023
- count = np.count_nonzero(arr)
2024
- assert_equal(count, 0)
2025
-
2026
- def test_copymodule_preserves_f_contiguity(self):
2027
- a = np.empty((2, 2), order='F')
2028
- b = copy.copy(a)
2029
- c = copy.deepcopy(a)
2030
- assert_(b.flags.fortran)
2031
- assert_(b.flags.f_contiguous)
2032
- assert_(c.flags.fortran)
2033
- assert_(c.flags.f_contiguous)
2034
-
2035
- def test_fortran_order_buffer(self):
2036
- import numpy as np
2037
- a = np.array([['Hello', 'Foob']], dtype='U5', order='F')
2038
- arr = np.ndarray(shape=[1, 2, 5], dtype='U1', buffer=a)
2039
- arr2 = np.array([[[sixu('H'), sixu('e'), sixu('l'), sixu('l'), sixu('o')],
2040
- [sixu('F'), sixu('o'), sixu('o'), sixu('b'), sixu('')]]])
2041
- assert_array_equal(arr, arr2)
2042
-
2043
- def test_assign_from_sequence_error(self):
2044
- # Ticket #4024.
2045
- arr = np.array([1, 2, 3])
2046
- assert_raises(ValueError, arr.__setitem__, slice(None), [9, 9])
2047
- arr.__setitem__(slice(None), [9])
2048
- assert_equal(arr, [9, 9, 9])
2049
-
2050
- def test_format_on_flex_array_element(self):
2051
- # Ticket #4369.
2052
- dt = np.dtype([('date', '<M8[D]'), ('val', '<f8')])
2053
- arr = np.array([('2000-01-01', 1)], dt)
2054
- formatted = '{0}'.format(arr[0])
2055
- assert_equal(formatted, str(arr[0]))
2056
-
2057
- def test_deepcopy_on_0d_array(self):
2058
- # Ticket #3311.
2059
- arr = np.array(3)
2060
- arr_cp = copy.deepcopy(arr)
2061
-
2062
- assert_equal(arr, arr_cp)
2063
- assert_equal(arr.shape, arr_cp.shape)
2064
- assert_equal(int(arr), int(arr_cp))
2065
- self.assertTrue(arr is not arr_cp)
2066
- self.assertTrue(isinstance(arr_cp, type(arr)))
2067
-
2068
- def test_bool_subscript_crash(self):
2069
- # gh-4494
2070
- c = np.rec.array([(1, 2, 3), (4, 5, 6)])
2071
- masked = c[np.array([True, False])]
2072
- base = masked.base
2073
- del masked, c
2074
- base.dtype
2075
-
2076
- def test_richcompare_crash(self):
2077
- # gh-4613
2078
- import operator as op
2079
-
2080
- # dummy class where __array__ throws exception
2081
- class Foo(object):
2082
- __array_priority__ = 1002
2083
- def __array__(self,*args,**kwargs):
2084
- raise Exception()
2085
-
2086
- rhs = Foo()
2087
- lhs = np.array(1)
2088
- for f in [op.lt, op.le, op.gt, op.ge]:
2089
- if sys.version_info[0] >= 3:
2090
- assert_raises(TypeError, f, lhs, rhs)
2091
- else:
2092
- f(lhs, rhs)
2093
- assert_(not op.eq(lhs, rhs))
2094
- assert_(op.ne(lhs, rhs))
2095
-
2096
- def test_richcompare_scalar_and_subclass(self):
2097
- # gh-4709
2098
- class Foo(np.ndarray):
2099
- def __eq__(self, other):
2100
- return "OK"
2101
- x = np.array([1,2,3]).view(Foo)
2102
- assert_equal(10 == x, "OK")
2103
- assert_equal(np.int32(10) == x, "OK")
2104
- assert_equal(np.array([10]) == x, "OK")
2105
-
2106
- def test_pickle_empty_string(self):
2107
- # gh-3926
2108
-
2109
- import pickle
2110
- test_string = np.string_('')
2111
- assert_equal(pickle.loads(pickle.dumps(test_string)), test_string)
2112
-
2113
-
2114
- if __name__ == "__main__":
2115
- run_module_suite()