Jason Madden added the comment:

Django uses a `wsgiref.simple_server` to serve requests, which in turn uses 
`socketserver.StreamRequestHandler` to implement its `WSGIRequestHandler`. That 
base class explicitly turns off buffering for writes (`wbufsize = 0` is the 
class default which gets passed to `socket.makefile`). So that explains how 
there's no `BufferedWriter` wrapped around the `SocketIO` instance.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue24291>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to