All below cases return 0.
fuzz.token_set_ratio("","")
fuzz.token_set_ratio(" "," ")
fuzz.token_set_ratio("%","%")
fuzz.token_set_ratio("%","%%")
As far as I understand all this characters are considered blank, but by my mind it would be natural to consider them same and return 100, as rapidfuzz does in this case.
All below cases return 0.
fuzz.token_set_ratio("","")
fuzz.token_set_ratio(" "," ")
fuzz.token_set_ratio("%","%")
fuzz.token_set_ratio("%","%%")
As far as I understand all this characters are considered blank, but by my mind it would be natural to consider them same and return 100, as rapidfuzz does in this case.