gtn/.venv/Lib/site-packages/pygame/scrap.pyi
Tipragot 628be439b8 Ajout d'un environement de développement.
Cela permet de ne pas avoir de problèmes de compatibilité
car python est dans le git.
2023-10-26 15:33:03 +02:00

12 lines
366 B
Python

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: ...