mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-01-06 11:09:57 -08:00
bf07912711
* Bump idna from 3.7 to 3.10 Bumps [idna](https://github.com/kjd/idna) from 3.7 to 3.10. - [Release notes](https://github.com/kjd/idna/releases) - [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst) - [Commits](https://github.com/kjd/idna/compare/v3.7...v3.10) --- updated-dependencies: - dependency-name: idna dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update idna==3.10 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
46 lines
868 B
Python
46 lines
868 B
Python
from .core import (
|
|
IDNABidiError,
|
|
IDNAError,
|
|
InvalidCodepoint,
|
|
InvalidCodepointContext,
|
|
alabel,
|
|
check_bidi,
|
|
check_hyphen_ok,
|
|
check_initial_combiner,
|
|
check_label,
|
|
check_nfc,
|
|
decode,
|
|
encode,
|
|
ulabel,
|
|
uts46_remap,
|
|
valid_contextj,
|
|
valid_contexto,
|
|
valid_label_length,
|
|
valid_string_length,
|
|
)
|
|
from .intranges import intranges_contain
|
|
from .package_data import __version__
|
|
|
|
__all__ = [
|
|
"__version__",
|
|
"IDNABidiError",
|
|
"IDNAError",
|
|
"InvalidCodepoint",
|
|
"InvalidCodepointContext",
|
|
"alabel",
|
|
"check_bidi",
|
|
"check_hyphen_ok",
|
|
"check_initial_combiner",
|
|
"check_label",
|
|
"check_nfc",
|
|
"decode",
|
|
"encode",
|
|
"intranges_contain",
|
|
"ulabel",
|
|
"uts46_remap",
|
|
"valid_contextj",
|
|
"valid_contexto",
|
|
"valid_label_length",
|
|
"valid_string_length",
|
|
]
|