[Python-bugs-list] [ python-Bugs-407777 ] 2.1b1 Lib/multifile.py typo

nobody nobody@sourceforge.net
Sun, 11 Mar 2001 16:00:59 -0800


Bugs #407777, was updated on 2001-03-11 16:00
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=105470&aid=407777&group_id=5470

Category: Python Library
Group: None
Status: Open
Priority: 5
Submitted By: Greg Andruk
Assigned to: Nobody/Anonymous
Summary: 2.1b1 Lib/multifile.py typo

Initial Comment:
on about line 120 of Lib/multifile.py, in the read(self) method, is:

        return self.readlines().join('')

In 2.0 and earlier, this was:

        return string.joinfields(self.readlines(), '')

So, that should now be:

        return ''.join(self.readlines())

Right?


----------------------------------------------------------------------

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=105470&aid=407777&group_id=5470