├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── makeunicodedata.py ├── setup.py ├── tests ├── __init__.py └── test_unicodedata2.py ├── tox.ini └── unicodedata2 ├── _unicodedata2_compat.h ├── pypy_ctype.c ├── pypy_ctype.h ├── unicodectype.c ├── unicodectype.h ├── unicodedata.c ├── unicodedata.c.h ├── unicodedata_db.h ├── unicodename_db.h └── unicodetype_db.h /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/unicodedata2/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/unicodedata2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/unicodedata2/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/unicodedata2/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/unicodedata2/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/unicodedata2/HEAD/README.md -------------------------------------------------------------------------------- /makeunicodedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/unicodedata2/HEAD/makeunicodedata.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/unicodedata2/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_unicodedata2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/unicodedata2/HEAD/tests/test_unicodedata2.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/unicodedata2/HEAD/tox.ini -------------------------------------------------------------------------------- /unicodedata2/_unicodedata2_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/unicodedata2/HEAD/unicodedata2/_unicodedata2_compat.h -------------------------------------------------------------------------------- /unicodedata2/pypy_ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/unicodedata2/HEAD/unicodedata2/pypy_ctype.c -------------------------------------------------------------------------------- /unicodedata2/pypy_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/unicodedata2/HEAD/unicodedata2/pypy_ctype.h -------------------------------------------------------------------------------- /unicodedata2/unicodectype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/unicodedata2/HEAD/unicodedata2/unicodectype.c -------------------------------------------------------------------------------- /unicodedata2/unicodectype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/unicodedata2/HEAD/unicodedata2/unicodectype.h -------------------------------------------------------------------------------- /unicodedata2/unicodedata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/unicodedata2/HEAD/unicodedata2/unicodedata.c -------------------------------------------------------------------------------- /unicodedata2/unicodedata.c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/unicodedata2/HEAD/unicodedata2/unicodedata.c.h -------------------------------------------------------------------------------- /unicodedata2/unicodedata_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/unicodedata2/HEAD/unicodedata2/unicodedata_db.h -------------------------------------------------------------------------------- /unicodedata2/unicodename_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/unicodedata2/HEAD/unicodedata2/unicodename_db.h -------------------------------------------------------------------------------- /unicodedata2/unicodetype_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/unicodedata2/HEAD/unicodedata2/unicodetype_db.h --------------------------------------------------------------------------------