Create and return a new event loop object according to this policy's rules. If there's need to set this loop as the event loop for the current context, set_event_loop must be called explicitly.
(self)
| 680 | raise NotImplementedError |
| 681 | |
| 682 | def new_event_loop(self): |
| 683 | """Create and return a new event loop object according to this |
| 684 | policy's rules. If there's need to set this loop as the event loop for |
| 685 | the current context, set_event_loop must be called explicitly.""" |
| 686 | raise NotImplementedError |
| 687 | |
| 688 | class _BaseDefaultEventLoopPolicy(_AbstractEventLoopPolicy): |
| 689 | """Default policy implementation for accessing the event loop. |
no outgoing calls
no test coverage detected