Today I found out that _bootlocale module does not exists for recent versions of Python.

But, the file in typeshed is there for all python versions: https://github.com/python/typeshed/blob/master/stdlib/_bootlocale.pyi
So, the question is: how can we mark modules the same way we mark functions / classes with sys.version_info guards?
Today I found out that
_bootlocalemodule does not exists for recent versions of Python.But, the file in typeshed is there for all python versions: https://github.com/python/typeshed/blob/master/stdlib/_bootlocale.pyi
So, the question is: how can we mark modules the same way we mark functions / classes with
sys.version_infoguards?