mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-03 00:22:44 +08:00
ssl stubtest exception fix/explanation (#5137)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
ctypes.wintypes
|
||||
pwd.getpwnam
|
||||
ssl.PROTOCOL_SSLv3
|
||||
ssl.RAND_egd
|
||||
ssl.PROTOCOL_SSLv3 # Depends on openssl compilation
|
||||
ssl.RAND_egd # Depends on openssl compilation
|
||||
|
||||
@@ -42,7 +42,6 @@ random.randrange # missing undocumented arg _int
|
||||
secrets.SystemRandom.getstate
|
||||
smtplib.SMTP.sendmail
|
||||
sre_compile.dis
|
||||
ssl.SSLSocket.__init__
|
||||
typing.AsyncGenerator.ag_await
|
||||
typing.AsyncGenerator.ag_code
|
||||
typing.AsyncGenerator.ag_frame
|
||||
|
||||
@@ -52,8 +52,8 @@ random.randrange # missing undocumented arg _int
|
||||
secrets.SystemRandom.getstate
|
||||
smtplib.SMTP.sendmail
|
||||
sre_constants.RANGE_IGNORE
|
||||
ssl.PROTOCOL_SSLv3
|
||||
ssl.RAND_egd
|
||||
ssl.PROTOCOL_SSLv3 # Depends on ssl compilation
|
||||
ssl.RAND_egd # Depends on openssl compilation
|
||||
types.ClassMethodDescriptorType.__get__
|
||||
types.MethodDescriptorType.__get__
|
||||
types.WrapperDescriptorType.__get__
|
||||
|
||||
@@ -74,8 +74,8 @@ secrets.SystemRandom.getstate
|
||||
select.epoll.register
|
||||
smtplib.SMTP.sendmail
|
||||
sre_constants.RANGE_IGNORE
|
||||
ssl.PROTOCOL_SSLv3
|
||||
ssl.RAND_egd
|
||||
ssl.PROTOCOL_SSLv3 # Depends on ssl compilation
|
||||
ssl.RAND_egd # Depends on openssl compilation
|
||||
sys.UnraisableHookArgs # Not exported from sys
|
||||
types.ClassMethodDescriptorType.__get__
|
||||
types.CodeType.replace
|
||||
|
||||
@@ -96,9 +96,8 @@ select.epoll.register
|
||||
smtplib.LMTP.__init__
|
||||
smtplib.SMTP.sendmail
|
||||
sre_constants.RANGE_IGNORE
|
||||
ssl.AF_INET
|
||||
ssl.PROTOCOL_SSLv3
|
||||
ssl.RAND_egd
|
||||
ssl.PROTOCOL_SSLv3 # Depends on ssl compilation
|
||||
ssl.RAND_egd # Depends on openssl compilation
|
||||
symtable.SymbolTable.has_exec
|
||||
sys.UnraisableHookArgs # Not exported from sys
|
||||
time.CLOCK_PROF
|
||||
|
||||
@@ -332,18 +332,9 @@ sqlite3.dbapi2.Row.__len__
|
||||
sqlite3.dbapi2.version_info
|
||||
sqlite3.version_info
|
||||
sre_constants.error.__init__
|
||||
ssl.PROTOCOL_SSLv2
|
||||
ssl.Purpose.__new__
|
||||
ssl.SSLContext.__new__
|
||||
ssl.SSLObject.__init__
|
||||
ssl.SSLSocket.connect
|
||||
ssl.SSLSocket.connect_ex
|
||||
ssl.SSLSocket.recv
|
||||
ssl.SSLSocket.recv_into
|
||||
ssl.SSLSocket.recvfrom
|
||||
ssl.SSLSocket.recvfrom_into
|
||||
ssl.SSLSocket.sendto
|
||||
ssl._ASN1Object.__new__
|
||||
ssl.PROTOCOL_SSLv2 # Defined only if compiled with ssl v2
|
||||
ssl.Purpose.__new__ # You cannot override __new__ in NamedTuple and runtime uses namedtuple.
|
||||
ssl._ASN1Object.__new__ # You cannot override __new__ in NamedTuple and runtime uses namedtuple.
|
||||
subprocess.Popen.__init__
|
||||
sunau.Au_write.getmark
|
||||
sunau.Au_write.getmarkers
|
||||
|
||||
Reference in New Issue
Block a user