diff options
author | Johannes Schönberger <hannesschoenberger@gmail.com> | 2013-01-13 20:54:19 +0100 |
---|---|---|
committer | Johannes Schönberger <jschoenberger@demuc.de> | 2013-06-06 21:15:44 +0200 |
commit | 781cb48ab247ff76d51a6e20603d7e763768276d (patch) | |
tree | d887a88f94cd99038afb9b210b289376c2c136bc | |
parent | 64d236c1a319d8bd3dc2742cd8e519aacab29df3 (diff) | |
download | numpy-781cb48ab247ff76d51a6e20603d7e763768276d.tar.gz |
Add doc string to creation test class
-rw-r--r-- | numpy/core/tests/test_numeric.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/core/tests/test_numeric.py b/numpy/core/tests/test_numeric.py index ec13adde6..bf3ca5d30 100644 --- a/numpy/core/tests/test_numeric.py +++ b/numpy/core/tests/test_numeric.py @@ -1330,6 +1330,8 @@ class TestStdVarComplex(TestCase): class TestCreationFuncs(TestCase): + '''Test ones, zeros, empty and filled''' + def setUp(self): self.dtypes = ('b', 'i', 'u', 'f', 'c', 'S', 'a', 'U', 'V') self.orders = {'C': 'c_contiguous', 'F': 'f_contiguous'} |