This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jmadden
Recipients Jonathan Kamens, Paolo Veglia, jmadden, marcjofre, martin.panter, pje
Date 2016-04-03.20:24:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1459715061.3.0.579318688238.issue24291@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2016-04-03 20:24:21jmaddensetrecipients: + jmadden, pje, martin.panter, Jonathan Kamens, marcjofre, Paolo Veglia
2016-04-03 20:24:21jmaddensetmessageid: <1459715061.3.0.579318688238.issue24291@psf.upfronthosting.co.za>
2016-04-03 20:24:21jmaddenlinkissue24291 messages
2016-04-03 20:24:21jmaddencreate