From: Ben Darnell Date: Sun, 5 Feb 2017 22:58:38 +0000 (-0500) Subject: web: Remove obsolete doc about stream_request_body and async prepare X-Git-Tag: v4.5.0~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0721917e5078e0937d2cd5f8355aa9301df4ca06;p=thirdparty%2Ftornado.git web: Remove obsolete doc about stream_request_body and async prepare Fixes #1933 --- diff --git a/tornado/web.py b/tornado/web.py index 9557a6f3f..21cc25f95 100644 --- a/tornado/web.py +++ b/tornado/web.py @@ -1672,10 +1672,6 @@ def stream_request_body(cls): * The regular HTTP method (``post``, ``put``, etc) will be called after the entire body has been read. - There is a subtle interaction between ``data_received`` and asynchronous - ``prepare``: The first call to ``data_received`` may occur at any point - after the call to ``prepare`` has returned *or yielded*. - See the `file receiver demo `_ for example usage. """