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

nobody nobody@sourceforge.net
Sun, 11 Mar 2001 18:57:12 -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: Closed
Priority: 5
Submitted By: Greg Andruk
Assigned to: Fred L. Drake, Jr.
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?


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

Comment By: Fred L. Drake, Jr.
Date: 2001-03-11 18:57

Message:
Logged In: YES 
user_id=3066

Right!  Fixed in Lib/multifile.py revision 1.17.

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

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