| 704 | } |
| 705 | |
| 706 | static PyObject *LevenshteinDistancesUTF8_get_capabilities(LevenshteinDistancesUTF8 *self, void *closure) { |
| 707 | return capabilities_to_tuple(self->capabilities); |
| 708 | } |
| 709 | |
| 710 | static PyObject *LevenshteinDistancesUTF8_call(LevenshteinDistancesUTF8 *self, PyObject *args, PyObject *kwargs) { |
| 711 | PyObject *a_obj = NULL, *b_obj = NULL, *device_obj = NULL, *out_obj = NULL; |
nothing calls this directly
no test coverage detected
searching dependent graphs…