| 427 | } |
| 428 | |
| 429 | static PyObject *LevenshteinDistances_get_capabilities(LevenshteinDistances *self, void *closure) { |
| 430 | return capabilities_to_tuple(self->capabilities); |
| 431 | } |
| 432 | |
| 433 | static PyObject *LevenshteinDistances_call(LevenshteinDistances *self, PyObject *args, PyObject *kwargs) { |
| 434 | PyObject *a_obj = NULL, *b_obj = NULL, *device_obj = NULL, *out_obj = NULL; |
nothing calls this directly
no test coverage detected
searching dependent graphs…