1. 1b12521 ENH: Add the polynomial module to the documentation. by Charles Harris · 14 years ago
  2. 1e85f6f REL: set version to 1.6.0rc3. by Ralf Gommers · 14 years ago v1.6.0rc3
  3. f340e88 DOC: Updated f2py size support note. by Pearu Peterson · 14 years ago
  4. bc03f06 DOC: Document the new keyword arguments for ufuncs by Mark Wiebe · 14 years ago
  5. 9e817bb DOC: Improve the documentation about type promotion by Mark Wiebe · 14 years ago
  6. 9528ca8 DOC: Document the changed default error handling for the 1.6.x release. by Charles Harris · 14 years ago
  7. 8024c27 DEP: deprecate normed kw in histogram and restore its old behavior. Introduce by Ralf Gommers · 14 years ago
  8. 5d11c56 DOC: The nditer exposure wasn't linked correctly by Mark Wiebe · 14 years ago
  9. 6385069 API: Rename 'niter' to 'nop' in the nditer by Mark Wiebe · 14 years ago
  10. 2acf028 DOC: slogdet was added in 1.5.0. by Charles Harris · 14 years ago
  11. 8f860dc DOC: Fill in more of the nditer docs by Mark Wiebe · 14 years ago
  12. cf4a16e DOC: Change newiter to nditer in new iterator NEP. by Ralf Gommers · 14 years ago
  13. aada933 ENH: Add 'subok' parameter to PyArray_NewLikeArray, np.empty_like, np.zeros_like, and np.ones_like by Mark Wiebe · 14 years ago
  14. 7ee96bd API: Rename 'coords' to 'multi-index' in ravel_coords and iterator API by Mark Wiebe · 14 years ago
  15. f089476 DOC: Document the addition of the new polynomials in the release notes. by Charles Harris · 14 years ago
  16. 782ba88 DOC: BLD: fix some doc build warnings. by Ralf Gommers · 14 years ago
  17. 6880bea STY: Rename NPY_ITER_NO_INNER_ITERATION to NPY_ITER_EXTERNAL_LOOP by Mark Wiebe · 14 years ago
  18. 52edb94 DOC: Add info about iterator, new functions, and C API additions to release notes by Mark Wiebe · 14 years ago
  19. f047f99 DOC: Document constructor API change, and fill in some more missing documentation by Mark Wiebe · 14 years ago
  20. c3f4e89 DOC: Updated f2py related release notes. by Pearu Peterson · 14 years ago
  21. 30ee1d3 DOC: update 1.6.0 release notes. Add headers for items to still be filled in. by rgommers · 14 years ago
  22. 5289230 BUG: For compatibility with 1.5, revert to permitting limited broadcasting of the assignment output by Mark Wiebe · 14 years ago
  23. 7bb54ef REL: add 1.6.0 release notes. by rgommers · 14 years ago
  24. 216799c DOC: fix typo in test guidelines. by rgommers · 14 years ago
  25. 083f6e1 DEP: remove deprecated get_numpy_include. by rgommers · 14 years ago
  26. f791984 DEP: remove deprecated names in fftpack. by rgommers · 14 years ago
  27. 859c269 DOC: Replace 'deprecated' with 'superceded' in a few places, fix a typo. by Mark Wiebe · 14 years ago
  28. 65b4a8a DOC: Add some missing documentation, hyper-link the iterator documentation by Mark Wiebe · 14 years ago
  29. 0c0c49c API: Rename the iterator function pointer types to be more consistent with NumPy convention by Mark Wiebe · 14 years ago
  30. ec151cc API: Change iterator API parameters ndim and niter from npy_intp to int by Mark Wiebe · 14 years ago
  31. efb3295 DOC: Copy iterator API documentation from the NEP by Mark Wiebe · 14 years ago
  32. 05142b6 DOC: add some more wiki edits, of rst files in ref/user guide. by rgommers · 15 years ago
  33. af1e833 ENH: core: Allow user to pass in output array for dot() by Luis Pedro Coelho · 15 years ago
  34. bdf25de ENH: index_tricks: Implement unravel_index and ravel_coords functions in C by Mark Wiebe · 15 years ago
  35. 7bead6a STY: Rename NPY_ITER_DONT_REVERSE_AXES to NPY_ITER_DONT_NEGATE_STRIDES to be more intuitive by Mark Wiebe · 15 years ago
  36. ab3dcf8 Merge branch 'mw_neps' by Mark Wiebe · 15 years ago
  37. 0046a59 NEP: iter: Add NPY_ITER_DONT_REVERSE_AXES flag by Mark Wiebe · 15 years ago
  38. 6510cce ENH: core: Add PyArray_NewLikeArray function by Mark Wiebe · 15 years ago
  39. b58b3d1 NEP: iter: Add NpyIter_GetAxisStrideArray function by Mark Wiebe · 15 years ago
  40. 91b7763 NEP: iter: Add some more functions by Mark Wiebe · 15 years ago
  41. 5435bdc DOC: core: Document the new einsum function by Mark Wiebe · 15 years ago
  42. 87c4ec8 NEP: Correct some spelling errors by Mark Wiebe · 15 years ago
  43. 0ad51c1 NEP: Add more flags and some timing results by Mark Wiebe · 15 years ago
  44. a8f5b4c ENH: ufunc: Restructure iterator ufunc evaluation into functions by Mark Wiebe · 15 years ago
  45. eca4d03 ENH: ufunc: Add the main loop selection/type-determination mechanism by Mark Wiebe · 15 years ago
  46. 5387da5 ENH: doc: Document the new API functions by Mark Wiebe · 15 years ago
  47. beba8f4 ENH: core: Add functions PyArray_CanCastArrayTo and PyArray_ResultType by Mark Wiebe · 15 years ago
  48. 81a28e7 ENH: core: Add PyArray_MinScalarType and expose it to Python by Mark Wiebe · 15 years ago
  49. ee06d18 ENH: core: Start converting ufunc to new iterator, add PyArray_PromoteTypes by Mark Wiebe · 15 years ago
  50. e916b9e ENH: core: Change PyArray_CopyAnyInto and PyArray_MoveAnyInto to use the new iterator by Mark Wiebe · 15 years ago
  51. 165d98d ENH: core: Switch nonzero to use the iterator as an example, add count_nonzero function by Mark Wiebe · 15 years ago
  52. 7dd477a NEP: iter: Add some typical inner loop examples, other small changes by Mark Wiebe · 15 years ago
  53. 15d11d4 NEP: iter: Add functionality for allowing multi-threaded iteration by Mark Wiebe · 15 years ago
  54. dd46d30 NEP: iter: Add NpyIter_ResetBasePointers function, remove NPY_ITER_OFFSETS flag by Mark Wiebe · 15 years ago
  55. bf5d404 NEP: iter: Clarify op_axes slightly, and add offsets example by Mark Wiebe · 15 years ago
  56. ac647ff NEP: iter: added table of contents by Mark Wiebe · 15 years ago
  57. 44ba4e3 NEP: iter: Added Lambda UFunc example by Mark Wiebe · 15 years ago
  58. 01ce669 NEP: iter: Switch from flags to a 'casting' parameter by Mark Wiebe · 15 years ago
  59. 66c549e NEP: Created deferred UFunc evaluation NEP by Mark Wiebe · 15 years ago
  60. 3de1f16 NEP: iter: Created Iterator/UFunc optimization NEP by Mark Wiebe · 15 years ago
  61. 9e8bf66 DOC: Add release note mention of float16 type by Mark Wiebe · 15 years ago
  62. c6f8dbb ENH: Rename the half character code from 'j' to 'e' by Mark Wiebe · 15 years ago
  63. 9b72aa9 DOC: core: Update docs for half/float16 type by Mark Wiebe · 15 years ago
  64. 9273a61 DOC: BUG: correct description of ndarray iterator. Closes #1687. by rgommers · 15 years ago
  65. 4a7de57 DOC: rename ReST files under doc/ from *.txt to *.rst.txt, so they render on github. by rgommers · 15 years ago
  66. 8adfc76 DOC: update release docs. by rgommers · 15 years ago
  67. 6bcb36f DOC: dev: update also the overview by Pauli Virtanen · 15 years ago
  68. 8e4efa9 DOC: dev: update instructions on sending patches by Pauli Virtanen · 15 years ago
  69. 3c2af9e DOC: dev: try to improve Git workflow docs by Pauli Virtanen · 15 years ago
  70. 6cd460c DOC: recommend to turn on deprecation warnings for Python >= 2.7. by rgommers · 15 years ago
  71. ac7bdc5 DOC: Update the testing guidelines. by rgommers · 15 years ago
  72. 1f0c928 DOC: regenerate gitwash docs by Pauli Virtanen · 15 years ago
  73. 8b04536 DOC: add developer docs based on gitwash by Pauli Virtanen · 15 years ago
  74. 816adf9 DOC: remove numpy.scipy.org -- it's now in a separate repository by Pauli Virtanen · 15 years ago
  75. a1c7953 sphinxext: bump numpydoc version by Pauli Virtanen · 15 years ago
  76. 08e85c1 sphinxext: remove deprecated parts from numpydoc by Pauli Virtanen · 15 years ago
  77. 6716be4 DOC: explicitly require Sphinx >= 1.0.1 by Pauli Virtanen · 15 years ago
  78. 4510c4a sphinxext: fix Other Parameters section parsing in docscrape by Pauli Virtanen · 15 years ago
  79. c952a9c DOC: Point the npy NEP to the git repo. by Stefan van der Walt · 15 years ago
  80. f4a313e DOC: Remove more SVN references. by Stefan van der Walt · 15 years ago
  81. 9c6c71d DOC: Refer to git repo in release notes. by Stefan van der Walt · 15 years ago
  82. 32a04c4 DOC: add instructions for updating the docs to HOWTO_RELEASE.txt by Pauli Virtanen · 15 years ago
  83. 93ef8f7 sphinxext/plot_directive: more robust relpath by Pauli Virtanen · 15 years ago
  84. e5387aa DOC: some more details on release process, and blank 2.0.0 notes. by rgommers · 15 years ago
  85. 3cb0eb3 sphinxext: be explicit about Sphinx version requirements by Pauli Virtanen · 15 years ago
  86. 3c3d423 REL: Apply changes to release notes and paver script in 1.5.x branch to trunk. by rgommers · 15 years ago
  87. 7843154 DOC: update doc/swig makefile and readme after moving swig/doc into refguide. by rgommers · 15 years ago
  88. 779d063 DOC: remove built separate swig docs. by rgommers · 15 years ago
  89. 72665ab DOC: integrate doc/swig/doc documentation with reference guide. by rgommers · 15 years ago
  90. 4f74a49 sphinxext: more lenient parsing for See Also sections by Pauli Virtanen · 15 years ago
  91. ece5941 DOC: update release howto with notes on PyPi and python-announce list. by rgommers · 15 years ago
  92. e7c59e6 Mention functions for Chebyshev points in release notes. by Charles Harris · 15 years ago
  93. cc5d131 Merge branch 'poly' by Charles Harris · 15 years ago
  94. 50db7ff DOC: Complete 1.5.0 release notes. by rgommers · 15 years ago
  95. 7b7bbc5 DOC: add FILES option to doc Makefile, for partial rebuilds by Pauli Virtanen · 15 years ago
  96. 9c3297c sphinxext: plot_directive: insert figures at points where plt.show() is called in the text by Pauli Virtanen · 15 years ago
  97. bf7dc71 sphinxext: bug fix + some features in plot_directive by Pauli Virtanen · 15 years ago
  98. a296636 DOC: wiki merge, rst docs. by rgommers · 15 years ago
  99. bff8bb5 DOC: sphinxext: replace directive mangling with domains (#1489) by Pauli Virtanen · 15 years ago
  100. 213302f DOC: update the blurb about the array interface by Pauli Virtanen · 15 years ago