MCPcopy
hub / github.com/django/django / run_loop

Method run_loop

django/utils/autoreload.py:363–370  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

361 self.run_loop()
362
363 def run_loop(self):
364 ticker = self.tick()
365 while not self.should_stop:
366 try:
367 next(ticker)
368 except StopIteration:
369 break
370 self.stop()
371
372 def tick(self):
373 """

Callers 3

runMethod · 0.95

Calls 2

tickMethod · 0.95
stopMethod · 0.95