Final exam version

This commit is contained in:
2026-06-26 10:40:09 +03:00
commit 3e593aea3e
5224 changed files with 535773 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
from typing import List, Optional
from collections.abc import ByteString
def init() -> None: ...
def get_init() -> bool: ...
def get(data_type: str) -> Optional[bytes]: ...
def get_types() -> List[str]: ...
def put(data_type: str, data: ByteString) -> None: ...
def contains(data_type: str) -> bool: ...
def lost() -> bool: ...
def set_mode(mode: int) -> None: ...