(**kwargs)
| 236 | |
| 237 | @staticmethod |
| 238 | def __launch_new_event_threaded(**kwargs): |
| 239 | t = threading.Thread( |
| 240 | target = Event.__new_event_threaded, |
| 241 | kwargs = locals().get('kwargs')) |
| 242 | t.daemon = True # Allow hot reload to work |
| 243 | t.start() |
| 244 | |
| 245 | def broadcast(self): |
| 246 | if settings.DIFFGRAM_SYSTEM_MODE == 'testing': |
no test coverage detected