summaryrefslogtreecommitdiff
path: root/scipy/test/testing.py
diff options
context:
space:
mode:
authorRobert Kern <robert.kern@gmail.com>2005-09-29 10:08:32 +0000
committerRobert Kern <robert.kern@gmail.com>2005-09-29 10:08:32 +0000
commit305fabee5b1cf1d03ace5e4aa4bb66b41a358f05 (patch)
tree6a49a69eadf04ab8a315e7a983ea9a5420e7a411 /scipy/test/testing.py
parentca2d4dc36cd735c76f895d86e8424099603a9fed (diff)
downloadnumpy-305fabee5b1cf1d03ace5e4aa4bb66b41a358f05.tar.gz
r3531@Blasphemy: kern | 2005-09-29 02:05:01 -0700
Restoring tests
Diffstat (limited to 'scipy/test/testing.py')
-rw-r--r--scipy/test/testing.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/scipy/test/testing.py b/scipy/test/testing.py
index 55dea7b20..a44093ab2 100644
--- a/scipy/test/testing.py
+++ b/scipy/test/testing.py
@@ -754,8 +754,9 @@ def assert_array_less(x,y,err_msg=''):
__all__.append('rand')
def rand(*args):
- """ Returns an array of random numbers with the given shape.
- used for testing
+ """Returns an array of random numbers with the given shape.
+
+ This only uses the standard library, so it is useful for testing purposes.
"""
import random
results = zeros(args,Float64)