Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
run
Method · 0.95
test_run_loop_catches_stopiteration
Method · 0.80
test_run_loop_stop_and_return
Method · 0.80
Calls
2
tick
Method · 0.95
stop
Method · 0.95
Tested by
2
test_run_loop_catches_stopiteration
Method · 0.64
test_run_loop_stop_and_return
Method · 0.64