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

Method run

Lib/test/test_ssl.py:2950–2958  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2948 threading.Thread.start(self)
2949
2950 def run(self):
2951 self.active = True
2952 if self.flag:
2953 self.flag.set()
2954 while self.active:
2955 try:
2956 asyncore.loop(1)
2957 except:
2958 pass
2959
2960 def stop(self):
2961 self.active = False

Callers

nothing calls this directly

Calls 2

setMethod · 0.45
loopMethod · 0.45

Tested by

no test coverage detected