(self, *args)
| 212 | self.input = wsgi_input |
| 213 | |
| 214 | def read(self, *args): |
| 215 | assert len(args) <= 1 |
| 216 | v = self.input.read(*args) |
| 217 | assert type(v) is bytes |
| 218 | return v |
| 219 | |
| 220 | def readline(self, *args): |
| 221 | v = self.input.readline(*args) |
no outgoing calls