You've already forked fuzzysearch
mirror of
https://github.com/Dasharo/fuzzysearch.git
synced 2026-03-06 15:27:05 -08:00
9 lines
141 B
Python
9 lines
141 B
Python
"""Compatibility support of testing tools for different Python versions"""
|
|
|
|
__all__ = [
|
|
'b',
|
|
]
|
|
|
|
def b(x):
|
|
return x.encode('latin-1')
|