()
| 122 | |
| 123 | |
| 124 | def test_fromstring_bogus(): |
| 125 | with assert_warns(DeprecationWarning): |
| 126 | assert_equal(np.fromstring("1. 2. 3. flop 4.", dtype=float, sep=" "), |
| 127 | np.array([1., 2., 3.])) |
| 128 | |
| 129 | |
| 130 | def test_fromstring_empty(): |
nothing calls this directly
no test coverage detected