ctypes._CData: Fix field name (#9633)

This commit is contained in:
Eclips4
2023-01-31 11:16:39 +03:00
committed by GitHub
parent c54a1a9e16
commit 3b4dbe36d4

View File

@@ -73,7 +73,7 @@ class _CDataMeta(type):
def __rmul__(cls: type[_CT], other: int) -> type[Array[_CT]]: ... # type: ignore[misc] # pyright: ignore[reportGeneralTypeIssues]
class _CData(metaclass=_CDataMeta):
_b_base: int
_b_base_: int
_b_needsfree_: bool
_objects: Mapping[Any, int] | None
@classmethod