mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-24 03:51:52 +08:00
Big diff: use lower-case list and dict (#5888)
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
import types
|
||||
from importlib.machinery import ModuleSpec
|
||||
from typing import Any, List
|
||||
from typing import Any
|
||||
|
||||
def create_builtin(__spec: ModuleSpec) -> types.ModuleType: ...
|
||||
def create_dynamic(__spec: ModuleSpec, __file: Any = ...) -> None: ...
|
||||
def acquire_lock() -> None: ...
|
||||
def exec_builtin(__mod: types.ModuleType) -> int: ...
|
||||
def exec_dynamic(__mod: types.ModuleType) -> int: ...
|
||||
def extension_suffixes() -> List[str]: ...
|
||||
def extension_suffixes() -> list[str]: ...
|
||||
def get_frozen_object(__name: str) -> types.CodeType: ...
|
||||
def init_frozen(__name: str) -> types.ModuleType: ...
|
||||
def is_builtin(__name: str) -> int: ...
|
||||
|
||||
Reference in New Issue
Block a user