mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-07 14:00:12 +08:00
Fix parameter type annotations in _cffi_backend stub. (#13590)
This commit is contained in:
@@ -127,13 +127,13 @@ class FFI:
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
module_name: str = ...,
|
||||
module_name: bytes = ...,
|
||||
_version: int = ...,
|
||||
_types: str = ...,
|
||||
_globals: tuple[str | int, ...] = ...,
|
||||
_struct_unions: tuple[tuple[str, ...], ...] = ...,
|
||||
_enums: tuple[str, ...] = ...,
|
||||
_typenames: tuple[str, ...] = ...,
|
||||
_types: bytes = ...,
|
||||
_globals: tuple[bytes | int, ...] = ...,
|
||||
_struct_unions: tuple[tuple[bytes, ...], ...] = ...,
|
||||
_enums: tuple[bytes, ...] = ...,
|
||||
_typenames: tuple[bytes, ...] = ...,
|
||||
_includes: tuple[FFI, ...] = ...,
|
||||
) -> None: ...
|
||||
@overload
|
||||
|
||||
Reference in New Issue
Block a user