summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_financial.py
Commit message (Collapse)AuthorAgeFilesLines
* BUG: fix div by zero handling in nper.David Cournapeau2010-03-311-1/+1
|
* Fix mirr function and its test. Thanks go to Skipper and Josef.Charles Harris2009-08-261-6/+10
|
* Comment out failing test until it is decided where the problem lies.Charles Harris2009-08-261-5/+3
|
* Make some fixes in mirr implementation to avoid overflow inCharles Harris2009-08-261-1/+1
| | | | summing booleans. Do some whitespace cleanup.
* Improve test and add a test to Python.Travis Oliphant2009-08-251-1/+4
|
* ran reindentJarrod Millman2008-08-081-2/+2
|
* Added tests to improve coverage.Alan McIntyre2008-07-241-25/+44
| | | | Converted tests from doctests to unit tests.
* Remove uses of set_package_path, set_local_path, restore_path.Alan McIntyre2008-07-031-11/+9
| | | | | Clean up and (somewhat) standardize test module imports. Removed unneeded reload calls.
* Restore old test framework classes.Alan McIntyre2008-06-211-1/+1
| | | | | | | | | | | 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-171-3/+4
| | | | modules.
* Fix doc-tests for financial.py so they don't rely on floating-point ↵Travis Oliphant2008-04-081-19/+19
| | | | exactness. Start filling in final function.
* Add docs and examples for financial functions.Travis Oliphant2008-04-081-1/+1
|
* Add modified internal rate of return calculation which is more conservative ↵Travis Oliphant2008-04-041-0/+5
| | | | and takes into account re-investing profits and expense of financing losses.
* Add fromregex function (needs more testing) and some simple spreadsheet-like ↵Travis Oliphant2008-04-041-0/+34
financial calculations.