How does Django's event routing system work?
A:
Django signals are synchronous. The handlers are executed as soon as the signal is fired, and control returns only when all appropriate handlers have finished.
Ignacio Vazquez-Abrams
2010-06-10 08:52:50