__init__(level, logger)
|
|
close()
|
Flush and close the IO object. |
detach()
|
Separate the underlying buffer from the TextIOBase and return it. |
fileno()
|
Return underlying file descriptor if one exists. |
flush()
|
Flush write buffers, if applicable. |
isatty()
|
Return whether this is an 'interactive' stream. |
read([size])
|
Read at most size characters from stream. |
readable()
|
Return whether object was opened for reading. |
readline([size])
|
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([size])
|
Truncate file to size bytes. |
writable()
|
Return whether object was opened for writing. |
write(s)
|
Write string s to stream. |
writelines(lines, /)
|
Write a list of lines to stream. |