Message262831
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. |
|
| Date |
User |
Action |
Args |
| 2016-04-03 20:24:21 | jmadden | set | recipients:
+ jmadden, pje, martin.panter, Jonathan Kamens, marcjofre, Paolo Veglia |
| 2016-04-03 20:24:21 | jmadden | set | messageid: <[email protected]> |
| 2016-04-03 20:24:21 | jmadden | link | issue24291 messages |
| 2016-04-03 20:24:21 | jmadden | create | |
|