The proxy file object that is intended to take the place of
sys.stdout. The proxy can manage a stack of file objects it is
writing to, and an underlying raw file object.
Methods
|
|
__init__
close
flush
pop
purge
push
write
writelines
|
|
__init__
|
__init__ ( self, rawFile )
|
|
close
|
close ( self )
|
|
flush
|
flush ( self )
|
|
pop
|
pop ( self )
|
|
purge
|
purge ( self )
|
|
push
|
push ( self, file )
|
|
write
|
write ( self, data )
|
|
writelines
|
writelines ( self, lines )
|
|