Home
last modified time | relevance | path

Searched refs:_msg_callback (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Lib/
Dssl.py622 def _msg_callback(self): member in SSLContext
654 inner = super()._msg_callback
660 @_msg_callback.setter
661 def _msg_callback(self, callback): member in SSLContext
663 super(SSLContext, SSLContext)._msg_callback.__set__(self, None)
696 super(SSLContext, SSLContext)._msg_callback.__set__(self, inner)
/external/python/cpython3/Lib/test/
Dtest_ssl.py4676 self.assertIs(client_context._msg_callback, None)
4677 client_context._msg_callback = msg_cb
4678 self.assertIs(client_context._msg_callback, msg_cb)
4680 client_context._msg_callback = object()
4694 client_context._msg_callback = msg_cb