[Python-3000] Draft PEP for New IO system

Aahz aahz at pythoncraft.com
Sun Mar 25 17:26:39 CEST 2007


I've looked at the most recent version at

http://python.org/dev/peps/pep-3116/

and I see nothing in there about the interaction between a BufferedIO
object and its underlying RawIO object.  That is, what happens if you do
this:

    f = open('foo', buffering=200)
    f.read(150)
    f.raw.read(200)
-- 
Aahz (aahz at pythoncraft.com)           <*>         http://www.pythoncraft.com/

"Typing is cheap.  Thinking is expensive."  --Roy Smith


More information about the Python-3000 mailing list