(self)
| 126 | """Patch the policy to always return a patched loop.""" |
| 127 | |
| 128 | def get_event_loop(self): |
| 129 | if self._local._loop is None: |
| 130 | loop = self.new_event_loop() |
| 131 | _patch_loop(loop) |
| 132 | self.set_event_loop(loop) |
| 133 | return self._local._loop |
| 134 | |
| 135 | if sys.version_info < (3, 14, 0): |
| 136 | policy = events.get_event_loop_policy() |
nothing calls this directly
no test coverage detected
searching dependent graphs…