From: Ben Darnell Date: Mon, 10 Apr 2017 03:18:31 +0000 (-0400) Subject: docs: Add uncovered function X-Git-Tag: v4.5.0~4^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2006%2Fhead;p=thirdparty%2Ftornado.git docs: Add uncovered function --- diff --git a/docs/conf.py b/docs/conf.py index 18a75ff5f..5bc6635b5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -70,6 +70,9 @@ coverage_ignore_functions = [ # parse_qs_bytes should probably be documented but it's complicated by # having different implementations between py2 and py3. "parse_qs_bytes", + + # tornado.gen + "Multi", ] html_favicon = 'favicon.ico' diff --git a/docs/websocket.rst b/docs/websocket.rst index b3596d4cf..96255589b 100644 --- a/docs/websocket.rst +++ b/docs/websocket.rst @@ -16,6 +16,7 @@ .. automethod:: WebSocketHandler.on_message .. automethod:: WebSocketHandler.on_close .. automethod:: WebSocketHandler.select_subprotocol + .. automethod:: WebSocketHandler.on_ping Output ------