summaryrefslogtreecommitdiff
path: root/Lib/codecs.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2002-03-05 15:46:38 +0000
committerMartin v. Löwis <martin@v.loewis.de>2002-03-05 15:46:38 +0000
commit08aec6472d6b841f4a5b5bda6008f34bf3fb96c8 (patch)
treed8950bf181895766b1b894b996fdf9c157cc884c /Lib/codecs.py
parentf0a208b23d51e73cd8d2f079fd0c37c181534a51 (diff)
downloadcpython-08aec6472d6b841f4a5b5bda6008f34bf3fb96c8.tar.gz
Set default value for readlines.sizehint to None. Change needed for 2.2.1
as well.
Diffstat (limited to 'Lib/codecs.py')
-rw-r--r--Lib/codecs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/codecs.py b/Lib/codecs.py
index df203c64da..293d5b7741 100644
--- a/Lib/codecs.py
+++ b/Lib/codecs.py
@@ -252,7 +252,7 @@ class StreamReader(Codec):
return self.decode(line, self.errors)[0]
- def readlines(self, sizehint=0):
+ def readlines(self, sizehint=None):
""" Read all lines available on the input stream
and return them as list of lines.