1. 6f7e145 1.2.x: Backport r5963 from trunk: Import documentation from doc wiki (part 2, work-in-progress docstrings, but they are still an improvement) by Pauli Virtanen · 17 years ago
  2. df8aa74 1.2.x: Backport r5962: improved docstrings from trunk (part 1) by Pauli Virtanen · 17 years ago
  3. 11f767a back ported Pauli Virtanen's fix for py 2.4 compatible lookfor (see r5862) by Jarrod Millman · 17 years ago
  4. 426e008 backporting r5788 to 1.2.x branch (loadtxt) by dhuard · 17 years ago
  5. d29107a reindenting prior to release by Jarrod Millman · 17 years ago
  6. 8864e08 Disable memmap test which crashes nose tests on cygwin. by David Cournapeau · 17 years ago
  7. eda3f09 Apply modified version of Andrew Dalke's patch in #874 to create a quicker-loading numpy. by Travis Oliphant · 17 years ago
  8. 88c8abb Revert r5698, r5699, and r5702 until build problems are fixed. by Charles Harris · 17 years ago
  9. 21a1087 Added benchmarks directory to lib/setup.py so that numpy.lib benchmarks are by Alan McIntyre · 17 years ago
  10. 96bcaf6 Use trunc as fix implementation. by David Cournapeau · 17 years ago
  11. 1ea2360 Fix fix tests. by David Cournapeau · 17 years ago
  12. 14dd0de Add a note on scimath.sqrt for the definition of square root as the principal square root. by David Cournapeau · 17 years ago
  13. 65839d7 Re-factor code to remove dependency of numpy.core on numpy.lib by moving issubclass_, issubsctype, and issubdtype to numpy.core.numerictypes by Travis Oliphant · 17 years ago
  14. 8b54222 Unique1d will now return unique as well as reverse indices. Fix order of by Stefan van der Walt · 17 years ago
  15. 086afd5 Disable memmap test on windows because it crashes the testsuite. This has to be fixed before a rc of numpy 1.2.0, though (see#827). by David Cournapeau · 17 years ago
  16. 83d7c02 Add Roberto de Almeida's Arrayterator. by Stefan van der Walt · 17 years ago
  17. 04a0ee1 More consistent nan-operations. by Stefan van der Walt · 17 years ago
  18. 3f45817 breaking API for median by Jarrod Millman · 17 years ago
  19. 70ed0f2 ran reindent by Jarrod Millman · 17 years ago
  20. 0da812e Remove piece-by-piece docstring assembly; the full texts were inserted in the docstrings in r5610 by Pauli Virtanen · 17 years ago
  21. 7f3e634 added comment in histogram warning. by dhuard · 17 years ago
  22. df9e25e Follow-up on changes to histogram semantics. by dhuard · 17 years ago
  23. 6647bf7 Merge from documentation editor. by Stefan van der Walt · 17 years ago
  24. 3a87305 Defer tempfile import to improve startup time. by Stefan van der Walt · 17 years ago
  25. 0d04757 Fix string type comparisons. by Stefan van der Walt · 17 years ago
  26. e6f61c9 Added tests to improve coverage. Converted tests from doctests to unit tests. by Alan McIntyre · 17 years ago
  27. 252e128 Standardized NumPy import as "import numpy as np". by Alan McIntyre · 17 years ago
  28. 1ab04d3 Fix doctest command continuation line. by Alan McIntyre · 17 years ago
  29. 856861c Added tests to improve coverage of numpy.lib. by Alan McIntyre · 17 years ago
  30. b5e26c4 Clean up loadtxt. Fix Python 2.3 compatibility. by Stefan van der Walt · 17 years ago
  31. a2dcde5 Apply Stefan's patch for Ryan's loadtext fix. by Charles Harris · 17 years ago
  32. e41b0e3 Committed patch from Ryan May. It fixes error in loadtxt occurring when usecols is not None and dtypes are given. by dhuard · 17 years ago
  33. b8ecdad Removed unused private function _asarray1d. by Alan McIntyre · 17 years ago
  34. 5808ab5 Add a pydoc import in lookfor; missed in the import refactoring. by Pauli Virtanen · 17 years ago
  35. da36770 BUG: Allow longs as well as ints to satisfy Win64. by Robert Kern · 17 years ago
  36. 775b05a Make use of assert_raises from numpy.testing, and added run_module_suite to support by Alan McIntyre · 17 years ago
  37. 382db35 Added tests to improve coverage. by Alan McIntyre · 17 years ago
  38. da2a994 Fix doctests to run properly under new execution context. by Alan McIntyre · 17 years ago
  39. 7895d91 Make doctests pass under new execution context. by Alan McIntyre · 17 years ago
  40. 59e1ee9 Use TestCase instead of NumpyTestCase. by Stefan van der Walt · 17 years ago
  41. 0dffd02 Simplify a bit more scons scripts. by David Cournapeau · 17 years ago
  42. 15e2c1a Use NumpyPythonExtension instead of DistutilsPythonExtension where possible. by David Cournapeau · 17 years ago
  43. 048bc86 Piecewise should not expose raw memory. Closes #798. by Stefan van der Walt · 17 years ago
  44. dcb2ea6 Removed convdtype.py as discussed on numpy-discussion list (code was intended for by Alan McIntyre · 17 years ago
  45. 36e0220 Use the implicit "import numpy as np" made available to all doctests instead by Alan McIntyre · 17 years ago
  46. 0c817a5 BUG: Correctly stub out urllib2.urlopen() for tests given the refactoring of the local imports. by Robert Kern · 17 years ago
  47. c8f88c0 Clean up test output such that a completely-passing test suite has no extraneous output. by Robert Kern · 17 years ago
  48. 638f015 BUG: need to create exceptions correctly. by Robert Kern · 17 years ago
  49. f912322 ENH: Add broadcast_arrays() function to expose broadcasting to pure Python functions that cannot be made to be ufuncs. by Robert Kern · 17 years ago
  50. a74f0df Added note to numpy developers about the policy on using finfo in numpy's codebase. by Robert Kern · 17 years ago
  51. 102cdc2 Reduce numpy's import times by delaying a few time consuming imports to the point of actual use and global instantiations of finfo. Thanks to David Cournapeau for tracking down and fixing the import part of the problem. by Robert Kern · 17 years ago
  52. 590babe Remove uses of set_package_path, set_local_path, restore_path. by Alan McIntyre · 17 years ago
  53. 94bc330 Use the implicit "import numpy as np" made available to all doctests instead of an explicit by Alan McIntyre · 17 years ago
  54. b6bbec8 Use join instead of += to build string. by Charles Harris · 17 years ago
  55. 22774bf Shorten long lines. by Charles Harris · 17 years ago
  56. a3adda5 Fix ticket #828 by explicitly sorting keys instead of relying on pprint. by Charles Harris · 17 years ago
  57. af7f89e Restore old test framework classes. by Alan McIntyre · 17 years ago
  58. 660dace Fix piecewise to handle 0-d inputs. by Travis Oliphant · 17 years ago
  59. c331857 Switched to use nose to run tests. Added test and bench functions to all modules. by Alan McIntyre · 17 years ago
  60. be47c6f Adapat numpy.lib scons build to new build_dir conventions. by David Cournapeau · 17 years ago
  61. a7eb6e9 Adapt numpy.lib to new scons build_dir behavior. by David Cournapeau · 17 years ago
  62. 942d2dc Merged revisions 5204-5257 via svnmerge from by David Cournapeau · 17 years ago
  63. 9525f46 fixed whitespace w/ reindent by Jarrod Millman · 17 years ago
  64. a29ca1a by David Cournapeau · 17 years ago
  65. 399147b Fix math markup in docstrings. by Stefan van der Walt · 17 years ago
  66. 89f1a4e Fix math in Bartlett docstring. by Stefan van der Walt · 17 years ago
  67. 40505ed Merge documentation changes from wiki. by Stefan van der Walt · 17 years ago
  68. 46768e6 Fix ReST markup in docstrings. by Stefan van der Walt · 17 years ago
  69. 8f60b48 Restore change to docstring overwritten by wiki merge. by Stefan van der Walt · 17 years ago
  70. b12d078 Merge docstrings from wiki. by Stefan van der Walt · 17 years ago
  71. e3d0fec Fix ticket #791. by Travis Oliphant · 17 years ago
  72. 3d336c3 Suppress test output. by Stefan van der Walt · 17 years ago
  73. 59e7bda Disable underflow warning reporting when testing for arch + test (#759). by David Cournapeau · 17 years ago
  74. cdc4c0a Add comments to savetxt. by Stefan van der Walt · 17 years ago
  75. e311e8d Support for multi formatting elements in savetxt [patch by David Huard]. by Stefan van der Walt · 17 years ago
  76. 1c89c15 histogram: an error is raised for varying bin widths only if normed=True. by dhuard · 17 years ago
  77. b64dbce Added an ignore warning in the test to avoid buildbot messages. by dhuard · 17 years ago
  78. bb61ebc Fix to histogram with respect to block updating.a by dhuard · 17 years ago
  79. c411951 Modified histogram according to the discussion on the numpy ML. by dhuard · 17 years ago
  80. 8c66331 ran reindent in preparation for the 1.1 release by Jarrod Millman · 17 years ago
  81. b4be377 Fixing #738: Even more careful drive letter handling. And make the tests actually pass on Windows. by Pauli Virtanen · 17 years ago
  82. 3888ac4 Fixing #738: remember to sanitize away also Windows drive letters by Pauli Virtanen · 17 years ago
  83. 5fc5deb Fix bug #738 and add corresponding tests. by Pauli Virtanen · 17 years ago
  84. ddde39b Don't require gzip or bz2 until the actual functionality is requested. by Robert Kern · 17 years ago
  85. 13f9b4a Added and fixed some tests for loadtxt and savetxt. Cleaned up the docstring of savetxt, added some info on formatting. by dhuard · 17 years ago
  86. 65dd4ae Fix fromregex, add documentation and tests [patch by Pauli Virtanen]. by Stefan van der Walt · 17 years ago
  87. 1ea8005 Compare against native-endian types, not endian-specific types. by Robert Kern · 17 years ago
  88. a0726b5 Add lookfor function from ticket #734 by Travis Oliphant · 17 years ago
  89. 3811cb8 Add one more test from ticket #728 by Travis Oliphant · 17 years ago
  90. 7e1350d Fixed #728 scalar coercion problem with mixed types and r_ by Travis Oliphant · 17 years ago
  91. 7e0f986 Fix vander docstring. by Stefan van der Walt · 17 years ago
  92. 0b0a389 Added test for handling missing data using loadtxt. by dhuard · 17 years ago
  93. 737f9a1 Formatted the docstring. Added comment regarding the handling of missing values. Addresses ticket #717. by dhuard · 17 years ago
  94. b21be67 Fix doc-tests for financial.py so they don't rely on floating-point exactness. Start filling in final function. by Travis Oliphant · 17 years ago
  95. 0035f91 Improve comments. by Travis Oliphant · 17 years ago
  96. 7d51a22 Add docs and examples for financial functions. by Travis Oliphant · 17 years ago
  97. f2e6d8e Modified io._getconv to allow loading values stored as float as integers arrays. Added test to check the behavior as suggested in the comment from b. southey in by dhuard · 17 years ago
  98. 3438413 Add modified internal rate of return calculation which is more conservative and takes into account re-investing profits and expense of financing losses. by Travis Oliphant · 17 years ago
  99. effc09b Add fromregex function (needs more testing) and some simple spreadsheet-like financial calculations. by Travis Oliphant · 17 years ago
  100. 1b8a670 added 1D tests for loadtxt and savetxt. Fixed a bug by dhuard · 17 years ago