fix some typos in normalized Levenshtein distance

This commit is contained in:
Max Bachmann 2021-03-13 07:53:26 +01:00
parent 5e261b8078
commit c31a2d96b5
4 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
1.2.1
1.3.0

View File

@ -29,7 +29,7 @@ struct proc_string {
size_t length;
};
static inline proc_string convert_string(PyObject* py_str, char* err)
static inline proc_string convert_string(PyObject* py_str, const char* err)
{
proc_string str = {0, NULL, 0};

@ -1 +1 @@
Subproject commit 04bd0adb1d6cebd0d5fec7ba984b6239d32ffe5a
Subproject commit ba7854e559e5665a07c517d7e8282374809281ab

View File

@ -3,6 +3,6 @@ rapid string matching library
"""
__author__ = "Max Bachmann"
__license__ = "MIT"
__version__ = "1.2.1"
__version__ = "1.3.0"
from rapidfuzz import process, fuzz, utils, levenshtein, string_metric