bundles / IPython 9.14.0.dev / IPython / utils / io / Tee / __init__
function
IPython.utils.io:Tee.__init__
source: /IPython/utils/io.py :35
Signature
def __init__ ( self , file_or_name : Union[str, StringIO] , mode : str = w , channel : str = stdout ) Summary
Construct a new Tee object.
Parameters
file_or_name: filename or open filehandle (writable)File that will be duplicated
mode: optional, valid mode for open().If a filename was give, open with this mode.
channel: str, one of ['stdout', 'stderr']
Aliases
-
IPython.utils.io.Tee.__init__