Update docs with new methods
This commit is contained in:
parent
93a0dc821c
commit
b2de4b8395
|
@ -26,6 +26,10 @@ autoclass_content = "both"
|
|||
coverage_skip_undoc_in_source = True
|
||||
# I wish this could go in a per-module file...
|
||||
coverage_ignore_classes = [
|
||||
# tornado.gen
|
||||
"Runner",
|
||||
"YieldPoint",
|
||||
|
||||
# tornado.web
|
||||
"ChunkedTransferEncoding",
|
||||
"GZipContentEncoding",
|
||||
|
|
|
@ -20,3 +20,4 @@
|
|||
|
||||
.. autoclass:: Wait
|
||||
|
||||
.. autoclass:: WaitAll
|
||||
|
|
|
@ -13,9 +13,11 @@
|
|||
|
||||
.. automethod:: IOLoop.instance
|
||||
.. automethod:: IOLoop.initialized
|
||||
.. automethod:: IOLoop.install
|
||||
.. automethod:: IOLoop.start
|
||||
.. automethod:: IOLoop.stop
|
||||
.. automethod:: IOLoop.running
|
||||
.. automethod:: IOLoop.stop
|
||||
.. automethod:: IOLoop.close
|
||||
|
||||
I/O events
|
||||
^^^^^^^^^^
|
||||
|
|
|
@ -39,6 +39,7 @@
|
|||
|
||||
.. automethod:: RequestHandler.set_status
|
||||
.. automethod:: RequestHandler.set_header
|
||||
.. automethod:: RequestHandler.add_header
|
||||
.. automethod:: RequestHandler.set_default_headers
|
||||
.. automethod:: RequestHandler.write
|
||||
.. automethod:: RequestHandler.flush
|
||||
|
|
Loading…
Reference in New Issue