()
| 128 | |
| 129 | |
| 130 | def test_fromstring_empty(): |
| 131 | with assert_warns(DeprecationWarning): |
| 132 | assert_equal(np.fromstring("xxxxx", sep="x"), |
| 133 | np.array([])) |
| 134 | |
| 135 | |
| 136 | def test_fromstring_missing(): |
nothing calls this directly
no test coverage detected