Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | DEP: Remove scons related files and code. | Charles Harris | 2013-01-13 | 1 | -8/+0 |
| | | | | | | | | | This removes files and code supporting scons builds. After this change numpy will only support builds using distutils or bento. The removal of scons has been discussed on the list several times and a decision has been made that scons support is no longer needed. This was originally discussed for numpy 1.7 and because the distutils and bento methods are still available we are skipping the usual deprecation period. | ||||
* | STY: Fix up some remaining old-style exceptions. | Charles Harris | 2011-04-05 | 3 | -7/+8 |
| | | | | I think that is the end of it. | ||||
* | STY: Fix up some two line old-style exceptions. | Charles Harris | 2011-04-05 | 1 | -2/+1 |
| | |||||
* | STY: Update exception styles, trickier ones. | Charles Harris | 2011-04-05 | 1 | -1/+1 |
| | |||||
* | STY: Update exception style, easy ones. | Charles Harris | 2011-04-05 | 6 | -37/+37 |
| | |||||
* | Don't deprecated bias keyword, just add ddof. | Charles Harris | 2010-07-07 | 1 | -1/+1 |
| | |||||
* | ENH: Add ddof keyword to cov and corrcoef. Deprecate bias keyword. | Charles Harris | 2010-07-07 | 1 | -1/+1 |
| | |||||
* | 3K: ENH: make oldnumeric to import -- but don't implement ↵ | Pauli Virtanen | 2010-02-21 | 2 | -6/+21 |
| | | | | oldnumeric.Unpickler as it's not straightforward to do | ||||
* | 3K: BUG: work around bugs in Python 3.1.1 2to3 by not using fixes_reduce | Pauli Virtanen | 2010-02-20 | 1 | -0/+3 |
| | | | | Instead, manually import reduce where necessary. | ||||
* | All non core regressions tests moved to their respective modules. | David Cournapeau | 2009-09-16 | 1 | -0/+10 |
| | |||||
* | ran reindent | Jarrod Millman | 2008-12-31 | 3 | -4/+4 |
| | |||||
* | Rewrapped __all__ definition to conform to PEP8. | Alan McIntyre | 2008-09-13 | 4 | -24/+29 |
| | | | | | | | Standardize NumPy import as "import numpy as np". Removed unused imports. Fixed undefined reference to ndarray (should be np.ndarray). Fixed undefined references to exp (should be math.exp). | ||||
* | Standardize NumPy import as "import numpy as np". | Alan McIntyre | 2008-07-25 | 1 | -17/+17 |
| | |||||
* | Correct the oldnumeric typecodes, update the tests to work on 32-bit ↵ | Robert Kern | 2008-07-03 | 3 | -17/+24 |
| | | | | machines, make sure these tests are installed with numpy so they can be run with numpy.test(). | ||||
* | Clean up test output such that a completely-passing test suite has no ↵ | Robert Kern | 2008-07-03 | 1 | -1/+3 |
| | | | | extraneous output. | ||||
* | Restore old test framework classes. | Alan McIntyre | 2008-06-21 | 2 | -2/+2 |
| | | | | | | | | | | | Added numpy.testing.run_module_suite to simplify "if __name__ == '__main__'" boilerplate code in test modules. Removed numpy/testing/pkgtester.py since it just consisted of an import statement after porting SciPy r4424. Allow numpy.*.test() to accept the old keyword arguments (but issue a deprecation warning when old arguments are seen). numpy.*.test() returns a test result object as before. Fixed typo in distutils doc. | ||||
* | Switched to use nose to run tests. Added test and bench functions to all ↵ | Alan McIntyre | 2008-06-17 | 2 | -2/+6 |
| | | | | modules. | ||||
* | ran reindent in preparation for the 1.1 release | Jarrod Millman | 2008-04-20 | 2 | -5/+3 |
| | |||||
* | Fix typo. | Travis Oliphant | 2008-04-03 | 1 | -1/+1 |
| | |||||
* | Fix-up a few errors in oldnumeric. | Travis Oliphant | 2008-04-01 | 1 | -3/+3 |
| | |||||
* | fix-up imports in oldnumeric/ma.py | Travis Oliphant | 2008-04-01 | 1 | -6/+6 |
| | |||||
* | Add old ma.py interface to oldnumeric compatibility layer so that it stays ↵ | Travis Oliphant | 2008-04-01 | 1 | -7/+2262 |
| | | | | the same. | ||||
* | Fix typo from last checkin. | Travis Oliphant | 2008-03-25 | 1 | -1/+1 |
| | |||||
* | Improve support for old pickles. | Travis Oliphant | 2008-03-25 | 2 | -19/+49 |
| | |||||
* | NotImplementedError is the exception, not NotImplemented | Robert Kern | 2008-03-24 | 1 | -4/+4 |
| | |||||
* | Fix oldnumeric compatibility with ma | Travis Oliphant | 2008-03-13 | 1 | -2/+2 |
| | |||||
* | Add setupscons.py for pure python packages | David Cournapeau | 2008-01-07 | 1 | -0/+8 |
| | |||||
* | more janitorial work | Jarrod Millman | 2007-12-29 | 2 | -40/+40 |
| | |||||
* | ran reindent.py to clean up whitespace | Jarrod Millman | 2007-10-29 | 3 | -6/+3 |
| | |||||
* | using faster string methods rather than deprecated string module | Jarrod Millman | 2007-10-29 | 2 | -3/+2 |
| | |||||
* | fixed typo | Jarrod Millman | 2007-10-29 | 1 | -1/+1 |
| | |||||
* | Fix randint. Closes ticket #552. | Stefan van der Walt | 2007-07-23 | 1 | -6/+4 |
| | |||||
* | Clean up setup() calls. | Pearu Peterson | 2007-05-11 | 1 | -1/+1 |
| | |||||
* | Fix compatibility layer definition of std | Travis Oliphant | 2007-05-04 | 1 | -1/+2 |
| | |||||
* | Add a few more functions to arrayfns compatibility file and fix typo. | Travis Oliphant | 2007-04-02 | 1 | -12/+28 |
| | |||||
* | Add the arrayfns compatibility library -- not finished. | Travis Oliphant | 2007-04-02 | 1 | -0/+82 |
| | |||||
* | clean up unused imports and bad whitespace | Tim Leslie | 2007-01-09 | 2 | -28/+25 |
| | |||||
* | Whitespace cleanup. | Stefan van der Walt | 2007-01-08 | 16 | -60/+49 |
| | |||||
* | Fix typo in oldnumeric and add Rick White's improvement to histogram for ↵ | Travis Oliphant | 2006-12-14 | 1 | -1/+1 |
| | | | | large arrays. | ||||
* | Don't share __all__ between numarray.linear_algebra and ↵ | Stefan van der Walt | 2006-11-22 | 2 | -3/+3 |
| | | | | oldnumeric.linear_algebra. | ||||
* | Fix the fromfunction routine to use float as default. Update oldnumeric and ↵ | Travis Oliphant | 2006-09-28 | 2 | -4/+7 |
| | | | | numarray compatibility modules. | ||||
* | Add oldtypecodes to oldnumeric.typeconv so that old Numeric character codes ↵ | Travis Oliphant | 2006-09-25 | 1 | -1/+18 |
| | | | | can be identified. | ||||
* | Switch order of .put arguments to match the function call. Eliminate ↵ | Travis Oliphant | 2006-09-22 | 1 | -6/+6 |
| | | | | .putmask as a method and make it only a function. | ||||
* | Fix problem with alter_code1.py | Travis Oliphant | 2006-09-21 | 1 | -1/+1 |
| | |||||
* | oldnumeric.argmin should use numpy.argmin | Robert Kern | 2006-09-19 | 1 | -1/+1 |
| | |||||
* | Add one more import possibility. | Travis Oliphant | 2006-09-19 | 1 | -0/+2 |
| | |||||
* | Add convertsrc to alter_code1 and clean it up so it doesn't always write the ↵ | Travis Oliphant | 2006-09-19 | 1 | -26/+55 |
| | | | | .orig file | ||||
* | Add histogramnd and fix histogram2d | Travis Oliphant | 2006-09-14 | 1 | -0/+1 |
| | |||||
* | Fix functions in oldnumeric.mlab | Travis Oliphant | 2006-09-08 | 1 | -0/+1 |
| | |||||
* | Add c_intp to ctypeslib. Add converttree to alter_code functions. Fix ↵ | Travis Oliphant | 2006-09-07 | 3 | -5/+25 |
| | | | | ctypeslib when ctypes is not available. |