Home
last modified time | relevance | path

Searched refs:hostname_checks_common_name (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Lib/
Dssl.py606 def hostname_checks_common_name(self): member in SSLContext
610 @hostname_checks_common_name.setter
611 def hostname_checks_common_name(self, value): member in SSLContext
618 def hostname_checks_common_name(self): member in SSLContext
/external/python/cpython3/Lib/test/
Dtest_ssl.py1180 self.assertTrue(ctx.hostname_checks_common_name)
1182 ctx.hostname_checks_common_name = True
1183 self.assertTrue(ctx.hostname_checks_common_name)
1184 ctx.hostname_checks_common_name = False
1185 self.assertFalse(ctx.hostname_checks_common_name)
1186 ctx.hostname_checks_common_name = True
1187 self.assertTrue(ctx.hostname_checks_common_name)
1190 ctx.hostname_checks_common_name = True
/external/python/cpython3/Misc/NEWS.d/
D3.7.0b1.rst674 SSLContext.hostname_checks_common_name.
D3.8.0b1.rst1638 What's new now mentions SSLContext.hostname_checks_common_name instead of
/external/python/cpython3/Doc/library/
Dssl.rst899 common name and :attr:`SSLContext.hostname_checks_common_name` is
2024 .. attribute:: SSLContext.hostname_checks_common_name
/external/python/cpython3/Doc/whatsnew/
D3.7.rst1331 :attr:`SSLContext.hostname_checks_common_name <ssl.SSLContext.hostname_checks_common_name>`.