diff options
author | Robert Kern <robert.kern@gmail.com> | 2005-09-29 10:08:32 +0000 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2005-09-29 10:08:32 +0000 |
commit | 305fabee5b1cf1d03ace5e4aa4bb66b41a358f05 (patch) | |
tree | 6a49a69eadf04ab8a315e7a983ea9a5420e7a411 /scipy/test/testing.py | |
parent | ca2d4dc36cd735c76f895d86e8424099603a9fed (diff) | |
download | numpy-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.py | 5 |
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) |