mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
Add locale_escape compat function
This commit is contained in:
parent
e72603f39f
commit
27b927259a
|
@ -6,6 +6,7 @@ import ftfy
|
||||||
import sys
|
import sys
|
||||||
import ujson
|
import ujson
|
||||||
import itertools
|
import itertools
|
||||||
|
import locale
|
||||||
|
|
||||||
from thinc.neural.util import copy_array
|
from thinc.neural.util import copy_array
|
||||||
|
|
||||||
|
@ -113,3 +114,12 @@ def import_file(name, loc):
|
||||||
module = importlib.util.module_from_spec(spec)
|
module = importlib.util.module_from_spec(spec)
|
||||||
spec.loader.exec_module(module)
|
spec.loader.exec_module(module)
|
||||||
return module
|
return module
|
||||||
|
|
||||||
|
|
||||||
|
def locale_escape(string, errors='replace'):
|
||||||
|
'''
|
||||||
|
Mangle non-supported characters, for savages with ascii terminals.
|
||||||
|
'''
|
||||||
|
encoding = locale.getpreferredencoding()
|
||||||
|
string = string.encode(encoding, errors).decode('utf8')
|
||||||
|
return string
|
||||||
|
|
Loading…
Reference in New Issue
Block a user