From: Ben Darnell Date: Mon, 19 Jan 2015 15:20:33 +0000 (-0500) Subject: Document the AsyncIOLoop.asyncio_loop attribute for public use. X-Git-Tag: v4.1.0b1~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=88f28760c6f5b53efa7229a818bb8189ed75ba37;p=thirdparty%2Ftornado.git Document the AsyncIOLoop.asyncio_loop attribute for public use. --- diff --git a/docs/asyncio.rst b/docs/asyncio.rst index 06dc44c32..e7c2c8fd9 100644 --- a/docs/asyncio.rst +++ b/docs/asyncio.rst @@ -42,3 +42,6 @@ loops. from tornado.ioloop import IOLoop IOLoop.configure('tornado.platform.asyncio.AsyncIOLoop') IOLoop.instance().start() + + Each ``AsyncIOLoop`` creates a new ``asyncio.EventLoop``; this object + can be accessed with the ``asyncio_loop`` attribute.