示例#1
0
文件: ssl.py 项目: nirs/cpython
 def __new__(cls, protocol=None, *args, **kwargs):
     if protocol is None:
         warnings.warn(
             "ssl.SSLContext() without protocol argument is deprecated.",
             category=DeprecationWarning,
             stacklevel=2)
         protocol = PROTOCOL_TLS
     self = _SSLContext.__new__(cls, protocol)
     return self
示例#2
0
 def __new__(cls, protocol=PROTOCOL_TLS, *args, **kwargs):
     self = _SSLContext.__new__(cls, protocol)
     return self
示例#3
0
 def __new__(cls, protocol, *args, **kwargs):
     return _SSLContext.__new__(cls, protocol)
示例#4
0
 def __new__(cls, protocol, *args, **kwargs):
     self = _SSLContext.__new__(cls, protocol)
     if protocol != _SSLv2_IF_EXISTS:
         self.set_ciphers(_DEFAULT_CIPHERS)
     return self
示例#5
0
 def __new__(cls, protocol, *args, **kwargs):
     self = _SSLContext.__new__(cls, protocol)
     if protocol != _SSLv2_IF_EXISTS:
         self.set_ciphers(_DEFAULT_CIPHERS)
     return self
示例#6
0
文件: ssl.py 项目: actionless/cpython
 def __new__(cls, protocol=PROTOCOL_TLS, *args, **kwargs):
     self = _SSLContext.__new__(cls, protocol)
     return self