[Python-checkins] python/nondist/sandbox/sio sio.py,1.3,1.4
gvanrossum@users.sourceforge.net
gvanrossum@users.sourceforge.net
Fri, 11 Apr 2003 07:17:24 -0700
Update of /cvsroot/python/python/nondist/sandbox/sio
In directory sc8-pr-cvs1:/tmp/cvs-serv22310
Modified Files:
sio.py
Log Message:
Document more missing API aspects.
Index: sio.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/sio/sio.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** sio.py 10 Apr 2003 01:00:04 -0000 1.3
--- sio.py 11 Apr 2003 14:17:20 -0000 1.4
***************
*** 23,29 ****
next(). (There's also readall() but that's a synonym for read()
without arguments.) This is a superset of the raw stream API. I
! haven't thought about fileno() and isatty() yet. We really need
! only one buffering stream implementation, which is a filtering
! stream.
You typically take a basis stream, place zero or more filtering
--- 23,30 ----
next(). (There's also readall() but that's a synonym for read()
without arguments.) This is a superset of the raw stream API. I
! haven't thought about fileno() and isatty() yet, nor about
! truncate() or the various attributes like name and mode. Also,
! close() is not implemented right. We really need only one buffering
! stream implementation, which is a filtering stream.
You typically take a basis stream, place zero or more filtering