summaryrefslogtreecommitdiff
path: root/numpy/testing/utils.py
diff options
context:
space:
mode:
authornaveenarun <notatroll.troll@gmail.com>2016-09-21 23:31:51 -0500
committerAlec Hodgkinson <Hodgka@rpi.edu>2016-09-23 19:04:14 -0400
commit36f88442209e74f0fcb63ec2aa3868b63f7dafb4 (patch)
tree5ef36cbbf8614ee2b0723423c8ab1dd30c41bdd5 /numpy/testing/utils.py
parent04a9eac54dff8f74d6433b25c3cb722ccd98b077 (diff)
downloadnumpy-36f88442209e74f0fcb63ec2aa3868b63f7dafb4.tar.gz
BUG: financial.pmt modifies input #8055
financial.pmt masked rate array in place, changing rate array. Changed to mask to a new array, preserving the original rate array.
Diffstat (limited to 'numpy/testing/utils.py')
-rw-r--r--numpy/testing/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/utils.py b/numpy/testing/utils.py
index 683a4f0a6..cb39a9b4a 100644
--- a/numpy/testing/utils.py
+++ b/numpy/testing/utils.py
@@ -64,7 +64,7 @@ def import_nose():
if not nose_is_good:
msg = ('Need nose >= %d.%d.%d for tests - see '
- 'http://somethingaboutorange.com/mrl/projects/nose' %
+ 'http://nose.readthedocs.io' %
minimum_nose_version)
raise ImportError(msg)