Home
last modified time | relevance | path

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

/third_party/python/Lib/
Dssl.py639 def _msg_callback(self): member in SSLContext
671 inner = super()._msg_callback
677 @_msg_callback.setter
678 def _msg_callback(self, callback): member in SSLContext
680 super(SSLContext, SSLContext)._msg_callback.__set__(self, None)
713 super(SSLContext, SSLContext)._msg_callback.__set__(self, inner)
/third_party/python/Lib/test/
Dtest_ssl.py4508 server_context._msg_callback = msg_cb
4509 client_context._msg_callback = msg_cb
4817 self.assertIs(client_context._msg_callback, None)
4818 client_context._msg_callback = msg_cb
4819 self.assertIs(client_context._msg_callback, msg_cb)
4821 client_context._msg_callback = object()
4835 client_context._msg_callback = msg_cb
4864 server_context._msg_callback = msg_cb