diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-06-05 06:56:51 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-06-05 06:56:51 (GMT) |
commit | ff5cd4576f7be50ef245124971078d80786e19cb (patch) | |
tree | 8b6f4d8b2283702b427eaeef8a1959b36b504d44 /Doc/library/wsgiref.rst | |
parent | 1b749c5ef6a319bb1b2fe679c7379ed61c907f7b (diff) | |
parent | ed0425c60abe1b746b1ca5b4039984d2ad6583c4 (diff) | |
download | cpython-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.rst | 3 |
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() |