Skip to content

Commit 65f1884

Browse files
Update pyOpenSSL to 23.1.* (#9939)
Release: https://pypi.org/pypi/pyOpenSSL/23.1.0 Homepage: https://pyopenssl.org/ Diff: pyca/pyopenssl@23.0.0...23.1.0 Stubsabot analysis of the diff between the two releases: - Total lines of Python code added: 122. - Total lines of Python code deleted: 45. Co-authored-by: Alex Waygood <[email protected]>
1 parent 0bb57fc commit 65f1884

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

stubs/pyOpenSSL/METADATA.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "23.0.*"
1+
version = "23.1.*"
22
# Requires a version of cryptography with a `py.typed` file
33
requires = ["cryptography>=35.0.0"]
44

stubs/pyOpenSSL/OpenSSL/SSL.pyi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,9 @@ class Connection:
131131
def connect(self, addr: str | bytes | Sequence[str | int]) -> None: ...
132132
def connect_ex(self, addr: _Address | bytes) -> int: ...
133133
def accept(self) -> tuple[Connection, _RetAddress]: ...
134+
def DTLSv1_listen(self) -> None: ...
135+
def DTLSv1_get_timeout(self) -> float | None: ...
136+
def DTLSv1_handle_timeout(self) -> bool: ...
134137
def shutdown(self) -> bool: ...
135138
def do_handshake(self) -> None: ...
136139
def get_certificate(self) -> X509 | None: ...

0 commit comments

Comments
 (0)