mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-04-26 08:44:14 +08:00
ff63953188
Signed-off-by: oleg.hoefling <oleg.hoefling@gmail.com>
18 lines
519 B
Python
18 lines
519 B
Python
from typing import Any
|
|
|
|
class _TempModule:
|
|
mod_name: Any
|
|
module: Any
|
|
def __init__(self, mod_name): ...
|
|
def __enter__(self): ...
|
|
def __exit__(self, *args): ...
|
|
|
|
class _ModifiedArgv0:
|
|
value: Any
|
|
def __init__(self, value): ...
|
|
def __enter__(self): ...
|
|
def __exit__(self, *args): ...
|
|
|
|
def run_module(mod_name, init_globals: Any | None = ..., run_name: Any | None = ..., alter_sys: bool = ...): ...
|
|
def run_path(path_name, init_globals: Any | None = ..., run_name: Any | None = ...): ...
|