()
| 956 | |
| 957 | @gen.coroutine |
| 958 | def tester(): |
| 959 | fut = Future() # type: Future[int] |
| 960 | weakref_scope[0] = weakref.ref(fut) |
| 961 | self.io_loop.add_callback(callback) |
| 962 | yield fut |
| 963 | |
| 964 | yield gen.with_timeout(datetime.timedelta(seconds=0.2), tester()) |
| 965 |
nothing calls this directly
no test coverage detected