(self)
| 859 | ['h-e-l-l-o', 'h_e_l_l_o']) |
| 860 | |
| 861 | def test_partition(self): |
| 862 | assert_equal(np.char.partition('This string', ' '), |
| 863 | ['This', ' ', 'string']) |
| 864 | |
| 865 | def test_rpartition(self): |
| 866 | assert_equal(np.char.rpartition('This string here', ' '), |
nothing calls this directly
no test coverage detected