Final exam version
This commit is contained in:
15
venv/lib/python3.12/site-packages/pygame/bufferproxy.pyi
Normal file
15
venv/lib/python3.12/site-packages/pygame/bufferproxy.pyi
Normal file
@@ -0,0 +1,15 @@
|
||||
from typing import Any, Dict, overload
|
||||
|
||||
class BufferProxy:
|
||||
parent: Any
|
||||
length: int
|
||||
raw: bytes
|
||||
# possibly going to be deprecated/removed soon, in which case these
|
||||
# typestubs must be removed too
|
||||
__array_interface__: Dict[str, Any]
|
||||
__array_struct__: Any
|
||||
@overload
|
||||
def __init__(self) -> None: ...
|
||||
@overload
|
||||
def __init__(self, parent: Any) -> None: ...
|
||||
def write(self, buffer: bytes, offset: int = 0) -> None: ...
|
||||
Reference in New Issue
Block a user