From: Remi Rampin Date: Wed, 17 Jul 2019 21:50:19 +0000 (-0700) Subject: Strip documentation about removed argument X-Git-Tag: v6.1.0b1~63^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2707%2Fhead;p=thirdparty%2Ftornado.git Strip documentation about removed argument --- diff --git a/tornado/web.py b/tornado/web.py index 7d75b35d7..adbf591e5 100644 --- a/tornado/web.py +++ b/tornado/web.py @@ -1056,12 +1056,6 @@ class RequestHandler(object): def flush(self, include_footers: bool = False) -> "Future[None]": """Flushes the current output buffer to the network. - The ``callback`` argument, if given, can be used for flow control: - it will be run when all flushed data has been written to the socket. - Note that only one flush callback can be outstanding at a time; - if another flush occurs before the previous flush's callback - has been run, the previous callback will be discarded. - .. versionchanged:: 4.0 Now returns a `.Future` if no callback is given.