[Python-checkins] CVS: python/dist/src/Lib codecs.py,1.23,1.24

Martin v. L?wis loewis@users.sourceforge.net
Tue, 05 Mar 2002 07:46:40 -0800


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv18567

Modified Files:
	codecs.py 
Log Message:
Set default value for readlines.sizehint to None. Change needed for 2.2.1
as well.


Index: codecs.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/codecs.py,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** codecs.py	19 Sep 2001 11:24:48 -0000	1.23
--- codecs.py	5 Mar 2002 15:46:38 -0000	1.24
***************
*** 253,257 ****
  
  
!     def readlines(self, sizehint=0):
  
          """ Read all lines available on the input stream
--- 253,257 ----
  
  
!     def readlines(self, sizehint=None):
  
          """ Read all lines available on the input stream