Files
blender-portable-repo/extensions/.local/lib/python3.11/site-packages/segments/util.py
T
2026-03-17 14:58:51 -06:00

9 lines
187 B
Python

import functools
import unicodedata
import regex
REPLACEMENT_MARKER = ''
nfd = functools.partial(unicodedata.normalize, 'NFD')
grapheme_pattern = regex.compile(r"\X", regex.UNICODE)