class twisted.web.wsgi._InputStream: (source)
File-like object instances of which are used as the value for the 'wsgi.input'
key in the environ
dictionary passed to the application object.
This only exists to make the handling of readline(-1)
consistent across different possible underlying file-like object implementations. The other supported methods pass through directly to the wrapped object.
Method | __init__ | Initialize the instance. |
Method | read | Pass through to the underlying read . |
Method | readline | Pass through to the underlying readline , with a size of -1 replaced with a size of None . |
Method | readlines | Pass through to the underlying readlines . |
Method | __iter__ | Pass through to the underlying __iter__ . |
Instance Variable | _wrapped | Undocumented |
Initialize the instance.
This is called in the I/O thread, not a WSGI application thread.
Pass through to the underlying read
.
This is called in a WSGI application thread, not the I/O thread.
Pass through to the underlying readline
, with a size of -1
replaced with a size of None
.
This is called in a WSGI application thread, not the I/O thread.
Pass through to the underlying readlines
.
This is called in a WSGI application thread, not the I/O thread.
Pass through to the underlying __iter__
.
This is called in a WSGI application thread, not the I/O thread.