8000 Delete stubs for `cryptography` by AlexWaygood · Pull Request #9459 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

Delete stubs for cryptography #9459

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jan 10, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Make pyright happy
  • Loading branch information
AlexWaygood committed Jan 4, 2023
commit 1a7626ebcc2576c7f9a9296e11e833ba52640ebc
5 changes: 3 additions & 2 deletions stubs/paramiko/paramiko/packet.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from _typeshed import Incomplete
from collections.abc import Callable
from hashlib import _Hash
from logging import Logger
Expand Down Expand Up @@ -25,7 +26,7 @@ class Packetizer:
def set_log(self, log: Logger) -> None: ...
def set_outbound_cipher(
self,
block_engine: Cipher,
block_engine: Cipher[Incomplete],
block_size: int,
mac_engine: _Hash,
mac_size: int,
Expand All @@ -34,7 +35,7 @@ class Packetizer:
etm: bool = ...,
) -> None: ...
def set_inbound_cipher(
self, block_engine: Cipher, block_size: int, mac_engine: _Hash, mac_size: int, mac_key: bytes, etm: bool = ...
self, block_engine: Cipher[Incomplete], block_size: int, mac_engine: _Hash, mac_size: int, mac_key: bytes, etm: bool = ...
) -> None: ...
def set_outbound_compressor(self, compressor: ZlibCompressor) -> None: ...
def set_inbound_compressor(self, compressor: ZlibDecompressor) -> None: ...
Expand Down
0