Esempio n. 1
0
File: ssl.py Progetto: 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
Esempio n. 2
0
 def __new__(cls, protocol=PROTOCOL_TLS, *args, **kwargs):
     self = _SSLContext.__new__(cls, protocol)
     return self
Esempio n. 3
0
 def __new__(cls, protocol, *args, **kwargs):
     return _SSLContext.__new__(cls, protocol)
Esempio n. 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
Esempio n. 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
Esempio n. 6
0
 def __new__(cls, protocol=PROTOCOL_TLS, *args, **kwargs):
     self = _SSLContext.__new__(cls, protocol)
     return self