You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Tornado v5.0.0 made some old methods/classes aliases for other
entities. Per their release notes[1], replace the aliases with
direct calls to the aliasee:
* Replace tornado.ioloop.IOLoop.instance() with
asyncio.get_event_loop(). instance() is an alias to .current(),
which (for WB's usage) is an alias to get_event_loop().
* Replace tornado.concurrent.Future with asyncio.Future
[1] https://github.com/tornadoweb/tornado/blob/master/docs/releases/v5.0.0.rst
0 commit comments