mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-08-12 19:06:51 +08:00
Update most test/lint dependencies (#15582)
This commit is contained in:
@@ -22,7 +22,7 @@ class _SupportsGetItem(Protocol[_T_co]):
|
||||
class ARC4:
|
||||
MOD: ClassVar[int]
|
||||
def KSA(self, key: _Key) -> list[int]: ...
|
||||
def PRGA(self, S: _SupportsGetItem[int]) -> Generator[int, None, None]: ...
|
||||
def PRGA(self, S: _SupportsGetItem[int]) -> Generator[int]: ...
|
||||
def encrypt(self, key: _Key, text: Iterable[int]) -> list[int]: ...
|
||||
|
||||
class CryptFilter:
|
||||
|
||||
@@ -171,7 +171,7 @@ class SubsetMap:
|
||||
font: TTFFont
|
||||
def __init__(self, font: TTFFont) -> None: ...
|
||||
def __len__(self) -> int: ...
|
||||
def items(self) -> Generator[Incomplete, None, None]: ...
|
||||
def items(self) -> Generator[Incomplete]: ...
|
||||
def pick(self, unicode: int): ...
|
||||
def pick_glyph(self, glyph): ...
|
||||
def get_glyph(self, glyph=None, unicode=None, glyph_name=None, glyph_width=None) -> Glyph: ...
|
||||
|
||||
Reference in New Issue
Block a user