mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-15 16:27:08 +08:00
runpy: return globals dict (#4965)
Fixes #4964 Co-authored-by: hauntsaninja <>
This commit is contained in:
@@ -18,5 +18,5 @@ class _ModifiedArgv0:
|
||||
|
||||
def run_module(
|
||||
mod_name: str, init_globals: Optional[Dict[str, Any]] = ..., run_name: Optional[str] = ..., alter_sys: bool = ...
|
||||
) -> None: ...
|
||||
def run_path(path_name: str, init_globals: Optional[Dict[str, Any]] = ..., run_name: str = ...) -> None: ...
|
||||
) -> Dict[str, Any]: ...
|
||||
def run_path(path_name: str, init_globals: Optional[Dict[str, Any]] = ..., run_name: str = ...) -> Dict[str, Any]: ...
|
||||
|
||||
Reference in New Issue
Block a user