Projekt_AI-Automatyczny_saper/venv/Lib/site-packages/pygame/bufferproxy.pyi

14 lines
363 B
Python
Raw Normal View History

2021-03-13 21:16:35 +01:00
from typing import Any, overload, Optional, TypeVar, Text
AnyStr = TypeVar("AnyStr", Text, bytes)
class BufferProxy(object):
parent: Any
length: int
raw: AnyStr
@overload
def __init__(self) -> None: ...
@overload
def __init__(self, parent: Any) -> None: ...
def write(self, buffer: bytes, offset: Optional[int] = 0) -> None: ...