Add __all__ to runpy (#7140)

This commit is contained in:
Nikita Sobolev
2022-02-05 21:23:47 +03:00
committed by GitHub
parent 348c38a0dd
commit c42bfc5710

View File

@@ -2,6 +2,8 @@ from _typeshed import Self
from types import ModuleType
from typing import Any
__all__ = ["run_module", "run_path"]
class _TempModule:
mod_name: str
module: ModuleType