summaryrefslogtreecommitdiffstats
path: root/Doc/library/wsgiref.rst
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-06-05 06:56:51 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-06-05 06:56:51 (GMT)
commitff5cd4576f7be50ef245124971078d80786e19cb (patch)
tree8b6f4d8b2283702b427eaeef8a1959b36b504d44 /Doc/library/wsgiref.rst
parent1b749c5ef6a319bb1b2fe679c7379ed61c907f7b (diff)
parented0425c60abe1b746b1ca5b4039984d2ad6583c4 (diff)
downloadcpython-ff5cd4576f7be50ef245124971078d80786e19cb.zip
cpython-ff5cd4576f7be50ef245124971078d80786e19cb.tar.gz
cpython-ff5cd4576f7be50ef245124971078d80786e19cb.tar.bz2
Issue #24291: Merge wsgi partial write fix from 3.5
Diffstat (limited to 'Doc/library/wsgiref.rst')
-rw-r--r--Doc/library/wsgiref.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/wsgiref.rst b/Doc/library/wsgiref.rst
index 57fef44..e15d919 100644
--- a/Doc/library/wsgiref.rst
+++ b/Doc/library/wsgiref.rst
@@ -515,6 +515,9 @@ input, output, and error streams.
streams are stored in the :attr:`stdin`, :attr:`stdout`, :attr:`stderr`, and
:attr:`environ` attributes.
+ The :meth:`~io.BufferedIOBase.write` method of *stdout* should write
+ each chunk in full, like :class:`io.BufferedIOBase`.
+
.. class:: BaseHandler()