diff --git a/stdlib/ctypes/__init__.pyi b/stdlib/ctypes/__init__.pyi index 53a382ec0e71..09e59522b2d5 100644 --- a/stdlib/ctypes/__init__.pyi +++ b/stdlib/ctypes/__init__.pyi @@ -12,6 +12,10 @@ _T = TypeVar("_T") _DLLT = TypeVar("_DLLT", bound=CDLL) _CT = TypeVar("_CT", bound=_CData) +class _Pointer(Generic[_T], _CData): + contents: ClassVar[Any] + def __init__(self, *args: Any, **kwargs: Any) -> None: ... + RTLD_GLOBAL: int RTLD_LOCAL: int DEFAULT_MODE: int