Cleanup: remove virtualenv from repo

This commit is contained in:
2025-11-19 18:08:11 +00:00
parent 52d3cd1b7d
commit f7e1b353fd
5356 changed files with 0 additions and 1632919 deletions

View File

@@ -1,21 +0,0 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals
import os
import pkgutil
_replaces = pkgutil.get_data(__name__, 'data.bin').decode('utf8').split('\x00')
def unidecode(txt):
chars = []
for ch in txt:
codepoint = ord(ch)
if not codepoint:
chars.append('\x00')
continue
try:
chars.append(_replaces[codepoint-1])
except IndexError:
pass
return "".join(chars)