()
| 323 | |
| 324 | @staticmethod |
| 325 | def _clear_current() -> None: |
| 326 | old = IOLoop.current(instance=False) |
| 327 | if old is not None: |
| 328 | old._clear_current_hook() |
| 329 | |
| 330 | def _clear_current_hook(self) -> None: |
| 331 | """Instance method called when an IOLoop ceases to be current. |
no test coverage detected