Skip to content

Commit 6e3c288

Browse files
committed
Add new methods to docs, found by sphinx coverage extension.
1 parent ebac4c0 commit 6e3c288

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

docs/gen.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33

44
.. automodule:: tornado.gen
55

6-
Decorator
7-
---------
6+
Decorators
7+
----------
8+
9+
.. autofunction:: coroutine
810

911
.. autofunction:: engine
1012

docs/ioloop.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
.. automethod:: IOLoop.install
1717
.. automethod:: IOLoop.start
1818
.. automethod:: IOLoop.stop
19+
.. automethod:: IOLoop.run_sync
1920
.. automethod:: IOLoop.close
2021

2122
I/O events

docs/testing.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
.. autoclass:: AsyncHTTPSTestCase
1616
:members:
1717

18+
.. autofunction:: gen_test
19+
1820
Controlling log output
1921
----------------------
2022

tornado/testing.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,7 @@ def gen_test(f):
371371
on subclasses of `AsyncTestCase`.
372372
373373
Example::
374+
374375
class MyTest(AsyncHTTPTestCase):
375376
@gen_test
376377
def test_something(self):

0 commit comments

Comments
 (0)