python 3, subclassing TextIOWrapper.

Benjamin Peterson benjamin at python.org
Sun Mar 22 15:37:31 EDT 2009


Gabriel Genellina <gagsl-py2 <at> yahoo.com.ar> writes:
> 
> There is another alternative that relies on undocumented behaviour: use  
> open to create a *binary* file and wrap the resulting BufferedReader  
> object in your own TextIOWrapper.

How is that undocumented behavior? TextIOWrapper can wrap any buffer which
follows the io.BufferedIOBase ABC. BufferedReader is a subclass of
io.BufferedIOBase.






More information about the Python-list mailing list