(self)
| 863 | ['This', ' ', 'string']) |
| 864 | |
| 865 | def test_rpartition(self): |
| 866 | assert_equal(np.char.rpartition('This string here', ' '), |
| 867 | ['This string', ' ', 'here']) |
| 868 | |
| 869 | def test_replace(self): |
| 870 | assert_equal(np.char.replace('Python is good', 'good', 'great'), |
nothing calls this directly
no test coverage detected