Closed carmocca closed 4 years ago
The following code should work:
editdistance.eval([[1, 2], [3, 4]], []) Traceback (most recent call last): File "<input>", line 1, in <module> File "editdistance/bycython.pyx", line 11, in editdistance.bycython.eval File "editdistance/bycython.pyx", line 15, in editdistance.bycython.eval TypeError: unhashable type: 'list'
The behaviour should be the same as:
editdistance.eval(['ab', 'bc'], []) 2
Is this a bug or just not supported? It works using https://github.com/life4/textdistance
Thanks.
Closing due to lack of activity
The following code should work:
The behaviour should be the same as:
Is this a bug or just not supported? It works using https://github.com/life4/textdistance
Thanks.