Skip to content

Commit

Permalink
fix argname spelling
Browse files Browse the repository at this point in the history
`vtlb_index` -> `vtbl_index`
  • Loading branch information
junkmd committed May 7, 2023
1 parent 9d7beb0 commit e86ea2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/_ctypes.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class CFuncPtr(_PointerLike, _CData):
def __init__(self, func_spec: tuple[str | int, CDLL], paramflags: tuple[_PF, ...] = ...) -> None: ...
if sys.platform == "win32":
@overload
def __init__(self, vtlb_index: int, name: str, paramflags: tuple[_PF, ...] = ..., iid: _Pointer[c_int] = ...) -> None: ...
def __init__(self, vtbl_index: int, name: str, paramflags: tuple[_PF, ...] = ..., iid: _Pointer[c_int] = ...) -> None: ...

def __call__(self, *args: Any, **kwargs: Any) -> Any: ...

Expand Down

0 comments on commit e86ea2e

Please sign in to comment.