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