summaryrefslogtreecommitdiff
path: root/numpy/lib
Commit message (Collapse)AuthorAgeFilesLines
...
* FIX: Loadtxt raises on empty input (closes #908).Stefan van der Walt2008-09-092-7/+11
|
* Applied patch from R. May fixing ticket #905 (loadtxt). Fixed other bug ↵dhuard2008-09-052-3/+20
| | | | occurring when both usecols and converters are provided. Added related regression tests.
* reindenting prior to releaseJarrod Millman2008-09-024-10/+10
|
* Disable memmap test which crashes nose tests on cygwin.David Cournapeau2008-09-011-1/+1
|
* Apply modified version of Andrew Dalke's patch in #874 to create a ↵Travis Oliphant2008-08-272-14/+39
| | | | quicker-loading numpy.
* Revert r5698, r5699, and r5702 until build problems are fixed.Charles Harris2008-08-271-14/+17
| | | | Fix ticket #878 differently.
* Added benchmarks directory to lib/setup.py so that numpy.lib benchmarks are Alan McIntyre2008-08-261-0/+1
| | | | | available in an installed NumPy. Display system configuration information when benchmarks are run.
* Use trunc as fix implementation.David Cournapeau2008-08-251-11/+2
|
* Fix fix tests.David Cournapeau2008-08-251-3/+3
|
* Add a note on scimath.sqrt for the definition of square root as the ↵David Cournapeau2008-08-201-0/+16
| | | | principal square root.
* Re-factor code to remove dependency of numpy.core on numpy.lib by moving ↵Travis Oliphant2008-08-151-43/+2
| | | | issubclass_, issubsctype, and issubdtype to numpy.core.numerictypes
* Unique1d will now return unique as well as reverse indices. Fix order ofStefan van der Walt2008-08-132-12/+53
| | | | returns [patch by Robert Cimrman].
* Disable memmap test on windows because it crashes the testsuite. This has to ↵David Cournapeau2008-08-131-31/+34
| | | | be fixed before a rc of numpy 1.2.0, though (see#827).
* Add Roberto de Almeida's Arrayterator.Stefan van der Walt2008-08-133-0/+190
|
* More consistent nan-operations.Stefan van der Walt2008-08-122-20/+38
|
* breaking API for medianJarrod Millman2008-08-081-12/+9
|
* ran reindentJarrod Millman2008-08-0815-70/+61
|
* Remove piece-by-piece docstring assembly; the full texts were inserted in ↵Pauli Virtanen2008-08-081-79/+0
| | | | the docstrings in r5610
* added comment in histogram warning.dhuard2008-08-051-0/+2
|
* Follow-up on changes to histogram semantics.dhuard2008-08-052-59/+85
| | | | `new` is now set to None by default, which triggers the new behaviour and prints a warning.
* Merge from documentation editor.Stefan van der Walt2008-08-0516-1044/+3857
|
* Defer tempfile import to improve startup time.Stefan van der Walt2008-07-311-1/+1
|
* Fix string type comparisons.Stefan van der Walt2008-07-301-4/+4
|
* Added tests to improve coverage.Alan McIntyre2008-07-241-25/+44
| | | | Converted tests from doctests to unit tests.
* Standardized NumPy import as "import numpy as np".Alan McIntyre2008-07-232-84/+87
| | | | Moved unique1d benchmarking code to new benchmarks directory.
* Fix doctest command continuation line.Alan McIntyre2008-07-231-1/+1
|
* Added tests to improve coverage of numpy.lib.Alan McIntyre2008-07-223-1/+60
|
* Clean up loadtxt. Fix Python 2.3 compatibility.Stefan van der Walt2008-07-221-9/+10
|
* Apply Stefan's patch for Ryan's loadtext fix.Charles Harris2008-07-222-34/+87
|
* Committed patch from Ryan May. It fixes error in loadtxt occurring when ↵dhuard2008-07-222-2/+17
| | | | | | usecols is not None and dtypes are given. I added the test suggested by Ryan.
* Removed unused private function _asarray1d.Alan McIntyre2008-07-211-8/+0
|
* Add a pydoc import in lookfor; missed in the import refactoring.Pauli Virtanen2008-07-201-0/+2
|
* BUG: Allow longs as well as ints to satisfy Win64.Robert Kern2008-07-201-1/+1
|
* Make use of assert_raises from numpy.testing, and added run_module_suite to ↵Alan McIntyre2008-07-141-3/+5
| | | | | | support running test module stand-alone.
* Added tests to improve coverage.Alan McIntyre2008-07-135-4/+254
| | | | Renamed TestPiecewise methods so that they will be picked up by nose.
* Fix doctests to run properly under new execution context.Alan McIntyre2008-07-131-4/+4
|
* Make doctests pass under new execution context.Alan McIntyre2008-07-092-7/+7
|
* Use TestCase instead of NumpyTestCase.Stefan van der Walt2008-07-091-1/+1
|
* Simplify a bit more scons scripts.David Cournapeau2008-07-091-2/+1
|
* Use NumpyPythonExtension instead of DistutilsPythonExtension where possible.David Cournapeau2008-07-091-4/+2
|
* Piecewise should not expose raw memory. Closes #798.Stefan van der Walt2008-07-082-11/+54
|
* Removed convdtype.py as discussed on numpy-discussion list (code was ↵Alan McIntyre2008-07-051-65/+0
| | | | | | intended for the Numeric to numpy transition, but was never used).
* Use the implicit "import numpy as np" made available to all doctests instead Alan McIntyre2008-07-057-99/+93
| | | | | of explicit imports or dependency on the local scope where the doctest is defined..
* BUG: Correctly stub out urllib2.urlopen() for tests given the refactoring of ↵Robert Kern2008-07-032-4/+10
| | | | the local imports.
* Clean up test output such that a completely-passing test suite has no ↵Robert Kern2008-07-031-2/+7
| | | | extraneous output.
* BUG: need to create exceptions correctly.Robert Kern2008-07-032-11/+17
|
* ENH: Add broadcast_arrays() function to expose broadcasting to pure Python ↵Robert Kern2008-07-033-0/+317
| | | | functions that cannot be made to be ufuncs.
* Added note to numpy developers about the policy on using finfo in numpy's ↵Robert Kern2008-07-031-0/+7
| | | | codebase.
* Reduce numpy's import times by delaying a few time consuming imports to the ↵Robert Kern2008-07-035-19/+26
| | | | point of actual use and global instantiations of finfo. Thanks to David Cournapeau for tracking down and fixing the import part of the problem.
* Remove uses of set_package_path, set_local_path, restore_path.Alan McIntyre2008-07-039-103/+53
| | | | | Clean up and (somewhat) standardize test module imports. Removed unneeded reload calls.