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.

Author meowing
Recipients
Date 2001-03-12.00:00:58
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
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?
History
Date User Action Args
2007-08-23 13:53:31adminlinkissue407777 messages
2007-08-23 13:53:31admincreate