Override in subclass to force sending of recent '_write()' calls It's okay if this method is a no-op (i.e., if '_write()' actually sends the data.
(self)
| 419 | raise NotImplementedError |
| 420 | |
| 421 | def _flush(self): |
| 422 | """Override in subclass to force sending of recent '_write()' calls |
| 423 | |
| 424 | It's okay if this method is a no-op (i.e., if '_write()' actually |
| 425 | sends the data. |
| 426 | """ |
| 427 | raise NotImplementedError |
| 428 | |
| 429 | def get_stdin(self): |
| 430 | """Override in subclass to return suitable 'wsgi.input'""" |