# Released under the MIT License. See LICENSE for details.#"""Functionality for wrangling locale info."""from__future__importannotationsfromenumimportEnumfromtypingimportTYPE_CHECKINGifTYPE_CHECKING:pass
[docs]classLocale(Enum):"""A distinct combination of language and possibly country/etc. Note that some locales here may be superseded by other more specific ones (for instance PORTUGUESE -> PORTUGUESE_BRAZIL), but the originals must continue to exist here since they may remain in use in the wild. """ENGLISH='en'
# Docs-generation hack; import some stuff that we likely only forward-declared# in our actual source code so that docs tools can find it.fromtypingimport(Coroutine,Any,Literal,Callable,Generator,Awaitable,Sequence,Self)importasynciofromconcurrent.futuresimportFuture