From 71e3eb7bf6d56b471a62c98af6fd6c2a59244130 Mon Sep 17 00:00:00 2001 From: Remi Rampin Date: Wed, 17 Jul 2019 14:50:19 -0700 Subject: [PATCH] Strip documentation about removed argument --- tornado/web.py | 6 ------ 1 file changed, 6 deletions(-) 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. -- 2.47.2