MCPcopy Index your code
hub / github.com/RustPython/RustPython / start

Method start

Lib/test/test_logging.py:957–964  ·  view source on GitHub ↗

Create a daemon thread to run the server, and start it.

(self)

Source from the content-addressed store, hash-verified

955 self.ready = threading.Event()
956
957 def start(self):
958 """
959 Create a daemon thread to run the server, and start it.
960 """
961 self._thread = t = threading.Thread(target=self.serve_forever,
962 args=(self.poll_interval,))
963 t.daemon = True
964 t.start()
965
966 def serve_forever(self, poll_interval):
967 """

Callers 15

mp_preload_main.pyFile · 0.45
do_blocking_testMethod · 0.45
_shutdown_getMethod · 0.45
_shutdown_putMethod · 0.45
_shutdown_joinMethod · 0.45
_shutdown_put_joinMethod · 0.45
mp_preload.pyFile · 0.45
test_threadsafe_waitMethod · 0.45
setUpMethod · 0.45

Calls 1

startMethod · 0.95

Tested by

no test coverage detected