mirror of
https://github.com/erg-lang/erg.git
synced 2025-08-04 10:49:54 +00:00
feat: add codecs/warnings
module
This commit is contained in:
parent
3366043a2d
commit
cdabb2e546
3 changed files with 160 additions and 0 deletions
|
@ -1,7 +1,31 @@
|
|||
.OPENSSL_VERSION: Str
|
||||
.OPENSSL_VERSION_INFO: (Nat, Nat, Nat)
|
||||
|
||||
.SSLContext: ClassType
|
||||
.create_default_context!: () => .SSLContext
|
||||
|
||||
.SSLError: ClassType
|
||||
.SSLError <: OSError
|
||||
|
||||
.SSLZeroReturnError: ClassType
|
||||
.SSLZeroReturnError <: SSLError
|
||||
|
||||
.SSLWantReadError: ClassType
|
||||
.SSLWantReadError <: SSLError
|
||||
|
||||
.SSLWantWriteError: ClassType
|
||||
.SSLWantWriteError <: SSLError
|
||||
|
||||
.SSLSyscallError: ClassType
|
||||
.SSLSyscallError <: SSLError
|
||||
|
||||
.SSLEOFError: ClassType
|
||||
.SSLEOFError <: SSLError
|
||||
|
||||
.SSLCertVerificationError: ClassType
|
||||
.SSLCertVerificationError <: SSLError
|
||||
|
||||
.CertificateError = .SSLCertVerificationError
|
||||
|
||||
.SSLSocket: ClassType
|
||||
.SSLSocket <: FileLike!
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue