diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-07-01 13:18:22 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-07-01 23:40:55 -0600 |
commit | 1393a575c58f1ba86b1684ba9677ad134d057a93 (patch) | |
tree | daf8bb2837b5e14ed59d1ad4e1b6c98a1666b5fe /numpy/matrixlib/tests/test_defmatrix.py | |
parent | 430a3796e11dd11bdc3db7838ff1bcf159105978 (diff) | |
download | numpy-1393a575c58f1ba86b1684ba9677ad134d057a93.tar.gz |
DOC: Remove references to removed setasflat ndarray method.
Diffstat (limited to 'numpy/matrixlib/tests/test_defmatrix.py')
-rw-r--r-- | numpy/matrixlib/tests/test_defmatrix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/matrixlib/tests/test_defmatrix.py b/numpy/matrixlib/tests/test_defmatrix.py index 166f68862..c7645d1e0 100644 --- a/numpy/matrixlib/tests/test_defmatrix.py +++ b/numpy/matrixlib/tests/test_defmatrix.py @@ -287,7 +287,7 @@ class TestMatrixReturn(TestCase): 'partition', 'argpartition', 'take', 'tofile', 'tolist', 'tostring', 'tobytes', 'all', 'any', 'sum', 'argmax', 'argmin', 'min', 'max', 'mean', 'var', 'ptp', - 'prod', 'std', 'ctypes', 'itemset', 'setasflat' + 'prod', 'std', 'ctypes', 'itemset', ] for attrib in dir(a): if attrib.startswith('_') or attrib in excluded_methods: |