summaryrefslogtreecommitdiff
path: root/numpy/oldnumeric
Commit message (Collapse)AuthorAgeFilesLines
* Don't deprecated bias keyword, just add ddof.Charles Harris2010-07-071-1/+1
|
* ENH: Add ddof keyword to cov and corrcoef. Deprecate bias keyword.Charles Harris2010-07-071-1/+1
|
* 3K: ENH: make oldnumeric to import -- but don't implement ↵Pauli Virtanen2010-02-212-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_reducePauli Virtanen2010-02-201-0/+3
| | | | Instead, manually import reduce where necessary.
* All non core regressions tests moved to their respective modules.David Cournapeau2009-09-161-0/+10
|
* ran reindentJarrod Millman2008-12-313-4/+4
|
* Rewrapped __all__ definition to conform to PEP8.Alan McIntyre2008-09-134-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 McIntyre2008-07-251-17/+17
|
* Correct the oldnumeric typecodes, update the tests to work on 32-bit ↵Robert Kern2008-07-033-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 Kern2008-07-031-1/+3
| | | | extraneous output.
* Restore old test framework classes.Alan McIntyre2008-06-212-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 McIntyre2008-06-172-2/+6
| | | | modules.
* ran reindent in preparation for the 1.1 releaseJarrod Millman2008-04-202-5/+3
|
* Fix typo.Travis Oliphant2008-04-031-1/+1
|
* Fix-up a few errors in oldnumeric.Travis Oliphant2008-04-011-3/+3
|
* fix-up imports in oldnumeric/ma.pyTravis Oliphant2008-04-011-6/+6
|
* Add old ma.py interface to oldnumeric compatibility layer so that it stays ↵Travis Oliphant2008-04-011-7/+2262
| | | | the same.
* Fix typo from last checkin.Travis Oliphant2008-03-251-1/+1
|
* Improve support for old pickles.Travis Oliphant2008-03-252-19/+49
|
* NotImplementedError is the exception, not NotImplementedRobert Kern2008-03-241-4/+4
|
* Fix oldnumeric compatibility with maTravis Oliphant2008-03-131-2/+2
|
* Add setupscons.py for pure python packagesDavid Cournapeau2008-01-071-0/+8
|
* more janitorial workJarrod Millman2007-12-292-40/+40
|
* ran reindent.py to clean up whitespaceJarrod Millman2007-10-293-6/+3
|
* using faster string methods rather than deprecated string moduleJarrod Millman2007-10-292-3/+2
|
* fixed typoJarrod Millman2007-10-291-1/+1
|
* Fix randint. Closes ticket #552.Stefan van der Walt2007-07-231-6/+4
|
* Clean up setup() calls.Pearu Peterson2007-05-111-1/+1
|
* Fix compatibility layer definition of stdTravis Oliphant2007-05-041-1/+2
|
* Add a few more functions to arrayfns compatibility file and fix typo.Travis Oliphant2007-04-021-12/+28
|
* Add the arrayfns compatibility library -- not finished.Travis Oliphant2007-04-021-0/+82
|
* clean up unused imports and bad whitespaceTim Leslie2007-01-092-28/+25
|
* Whitespace cleanup.Stefan van der Walt2007-01-0816-60/+49
|
* Fix typo in oldnumeric and add Rick White's improvement to histogram for ↵Travis Oliphant2006-12-141-1/+1
| | | | large arrays.
* Don't share __all__ between numarray.linear_algebra and ↵Stefan van der Walt2006-11-222-3/+3
| | | | oldnumeric.linear_algebra.
* Fix the fromfunction routine to use float as default. Update oldnumeric and ↵Travis Oliphant2006-09-282-4/+7
| | | | numarray compatibility modules.
* Add oldtypecodes to oldnumeric.typeconv so that old Numeric character codes ↵Travis Oliphant2006-09-251-1/+18
| | | | can be identified.
* Switch order of .put arguments to match the function call. Eliminate ↵Travis Oliphant2006-09-221-6/+6
| | | | .putmask as a method and make it only a function.
* Fix problem with alter_code1.pyTravis Oliphant2006-09-211-1/+1
|
* oldnumeric.argmin should use numpy.argminRobert Kern2006-09-191-1/+1
|
* Add one more import possibility.Travis Oliphant2006-09-191-0/+2
|
* Add convertsrc to alter_code1 and clean it up so it doesn't always write the ↵Travis Oliphant2006-09-191-26/+55
| | | | .orig file
* Add histogramnd and fix histogram2dTravis Oliphant2006-09-141-0/+1
|
* Fix functions in oldnumeric.mlabTravis Oliphant2006-09-081-0/+1
|
* Add c_intp to ctypeslib. Add converttree to alter_code functions. Fix ↵Travis Oliphant2006-09-073-5/+25
| | | | ctypeslib when ctypes is not available.
* Add a module/script to fix the default axis issue for code already converted ↵Travis Oliphant2006-08-291-0/+292
| | | | to NumPy
* Clean-up some un-needed default axes. Fix default axes of ma.sum and ma.productTravis Oliphant2006-08-291-1/+1
|
* Add axis arguments to various functions so as not to rely on the defaults.Travis Oliphant2006-08-292-10/+10
|
* Merge changes mistakenly added to 1.0b4 tag to the main trunkTravis Oliphant2006-08-281-2/+3
|
* Fix a problem with __all__ not being copied in oldnumeric.Travis Oliphant2006-08-252-5/+7
|