class documentation

class TypeshedStore: (source)

Known subclasses: pytype.imports.typeshed.TypeshedFs

View In Hierarchy

Underlying datastore for typeshed.

Method file_exists Undocumented
Method filepath Absolute path to a typeshed file.
Method list_files Undocumented
Method load_file Undocumented
Method load_missing List of modules that are known to be missing in typeshed.
Method load_pytype_blocklist List of modules that we maintain our own versions of.
Method load_stdlib_versions Undocumented
@abc.abstractmethod
def filepath(self, relpath) -> str: (source)

Absolute path to a typeshed file.

@abc.abstractmethod
def load_file(self, relpath) -> Tuple[str, str]: (source)

Undocumented

@abc.abstractmethod
def load_missing(self) -> List[str]: (source)

List of modules that are known to be missing in typeshed.

@abc.abstractmethod
def load_pytype_blocklist(self) -> List[str]: (source)

List of modules that we maintain our own versions of.

@abc.abstractmethod
def load_stdlib_versions(self) -> List[str]: (source)

Undocumented