Part of twisted.web.wsgi View Source View In Hierarchy
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.
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__ .
|
Initialize the instance.
This is called in the I/O thread, not a WSGI application thread.Pass through to the underlying read
.
Pass through to the underlying readline
, with a size of
-1
replaced with a size of None
.
Pass through to the underlying readlines
.
Pass through to the underlying __iter__
.