示例#1
0
 def get_ssl_options(self):
     return dict(ssl_version=self.get_ssl_version(),  # type: ignore
                 **AsyncHTTPSTestCase.get_ssl_options())
示例#2
0
 def get_ssl_options(self):
     context = ssl_options_to_context(
         AsyncHTTPSTestCase.get_ssl_options(self))
     assert isinstance(context, ssl.SSLContext)
     return context
示例#3
0
 def get_ssl_options(self):
     return dict(ssl_version=self.get_ssl_version(),
                 **AsyncHTTPSTestCase.get_ssl_options())
示例#4
0
 def get_ssl_options(self):
     context = ssl_options_to_context(
         AsyncHTTPSTestCase.get_ssl_options(self))
     assert isinstance(context, ssl.SSLContext)
     return context
示例#5
0
 def get_ssl_options(self):
     return dict(ssl_version=ssl.PROTOCOL_SSLv2,
                 **AsyncHTTPSTestCase.get_ssl_options(self))