mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
22 lines
773 B
Python
22 lines
773 B
Python
import sys
|
|
import types
|
|
from importlib.machinery import ModuleSpec
|
|
from typing import Any
|
|
|
|
if sys.version_info >= (3, 7):
|
|
check_hash_based_pycs: str
|
|
|
|
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 get_frozen_object(__name: str) -> types.CodeType: ...
|
|
def init_frozen(__name: str) -> types.ModuleType: ...
|
|
def is_builtin(__name: str) -> int: ...
|
|
def is_frozen(__name: str) -> bool: ...
|
|
def is_frozen_package(__name: str) -> bool: ...
|
|
def lock_held() -> bool: ...
|
|
def release_lock() -> None: ...
|