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

Method start

Lib/test/test_logging.py:916–923  ·  view source on GitHub ↗

Start the server running on a separate daemon thread.

(self)

Source from the content-addressed store, hash-verified

914 self._handler(peer, mailfrom, rcpttos, data)
915
916 def start(self):
917 """
918 Start the server running on a separate daemon thread.
919 """
920 self._thread = t = threading.Thread(target=self.serve_forever,
921 args=(self.poll_interval,))
922 t.daemon = True
923 t.start()
924
925 def serve_forever(self, poll_interval):
926 """

Callers 1

test_basicMethod · 0.95

Calls 1

startMethod · 0.95

Tested by

no test coverage detected