# Released under the MIT License. See LICENSE for details.#"""Functionality related to net play."""from__future__importannotationsfromtypingimportTYPE_CHECKINGfromdataclassesimportdataclassifTYPE_CHECKING:pass
[docs]@dataclassclassHostInfo:"""Info about a host."""name:strbuild_number:int# Note this can be None for non-ip hosts such as bluetooth.address:str|None# Note this can be None for non-ip hosts such as bluetooth.port:int|None
# 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