(callback_function)
| 94 | available_events = {} |
| 95 | |
| 96 | def _define_event(callback_function): |
| 97 | callback_proto = callback_prototype(callback_function) |
| 98 | available_events[callback_function.__name__] = callback_proto |
| 99 | return callback_proto |
| 100 | |
| 101 | # ------------------------------------------------------------------------------ |
| 102 | # Callback prototypes |
nothing calls this directly
no outgoing calls
no test coverage detected