__init__ (level, logger)
|
|
close ()
|
Flush and close the IO object. |
detach
|
Separate the underlying buffer from the TextIOBase and return it. |
fileno ()
|
Returns underlying file descriptor if one exists. |
flush ()
|
Flush write buffers, if applicable. |
isatty ()
|
Return whether this is an 'interactive' stream. |
read
|
Read at most n characters from stream. |
readable ()
|
Return whether object was opened for reading. |
readline
|
Read until newline or EOF. |
readlines ([hint])
|
Return a list of lines from the stream. |
redirect_streams (redirects)
|
Redirect StreamHandler objects to the original file descriptors |
seek (offset[, whence])
|
Change the stream position to the given byte offset. |
seekable ()
|
Return whether object supports random access. |
tell ()
|
Return current stream position. |
truncate
|
Truncate file to size bytes. |
writable ()
|
Return whether object was opened for writing. |
write (s)
|
Write string to stream. |
writelines (lines, /)
|
Write a list of lines to stream. |