This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: 2.1b1 Lib/multifile.py typo
Type: Stage:
Components: Library (Lib) Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: fdrake Nosy List: fdrake, meowing
Priority: normal Keywords:

Created on 2001-03-12 00:00 by meowing, last changed 2022-04-10 16:03 by admin. This issue is now closed.

Messages (2)
msg3825 - (view) Author: Greg Andruk (meowing) Date: 2001-03-12 00:00
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?
msg3826 - (view) Author: Fred Drake (fdrake) (Python committer) Date: 2001-03-12 02:57
Logged In: YES 
user_id=3066

Right!  Fixed in Lib/multifile.py revision 1.17.
History
Date User Action Args
2022-04-10 16:03:51adminsetgithub: 34136
2001-03-12 00:00:58meowingcreate