OXIESEC PANEL
- Current Dir:
/
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
wcwidth
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
09/05/2025 09:34:06 AM
rwxr-xr-x
📄
__init__.py
1.01 KB
12/18/2024 10:23:15 AM
rw-r--r--
📁
__pycache__
-
02/07/2025 10:01:51 PM
rwxr-xr-x
📄
table_wide.py
89.56 KB
12/18/2024 10:23:15 AM
rw-r--r--
📄
table_zero.py
321.38 KB
12/18/2024 10:23:15 AM
rw-r--r--
📄
unicode_versions.py
833 bytes
12/18/2024 10:23:15 AM
rw-r--r--
📄
wcwidth.py
14.59 KB
12/18/2024 10:23:15 AM
rw-r--r--
Editing: __init__.py
Close
""" wcwidth module. https://github.com/jquast/wcwidth """ # re-export all functions & definitions, even private ones, from top-level # module path, to allow for 'from wcwidth import _private_func'. Of course, # user beware that any _private function may disappear or change signature at # any future version. # local from .wcwidth import ZERO_WIDTH # noqa from .wcwidth import (WIDE_EASTASIAN, wcwidth, wcswidth, _bisearch, list_versions, _wcmatch_version, _wcversion_value) # The __all__ attribute defines the items exported from statement, # 'from wcwidth import *', but also to say, "This is the public API". __all__ = ('wcwidth', 'wcswidth', 'list_versions') # We also used pkg_resources to load unicode version tables from version.json, # generated by bin/update-tables.py, but some environments are unable to # import pkg_resources for one reason or another, yikes! __version__ = '0.2.6'