MCPcopy Index your code
hub / github.com/python/cpython / start

Method start

Lib/test/test_ssl.py:2800–2805  ·  view source on GitHub ↗
(self, flag=None)

Source from the content-addressed store, hash-verified

2798 self.join()
2799
2800 def start(self, flag=None):
2801 if not self._in_context:
2802 raise ValueError(
2803 'ThreadedEchoServer must be used as a context manager')
2804 self.flag = flag
2805 threading.Thread.start(self)
2806
2807 def run(self):
2808 if not self._in_context:

Callers 5

__enter__Method · 0.95
runMethod · 0.45
startMethod · 0.45
startMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected