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 serhiy.storchaka
Recipients barry, christian.heimes, r.david.murray, serhiy.storchaka
Date 2012-10-20.20:37:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1350765464.77.0.469864093705.issue16042@psf.upfronthosting.co.za>
In-reply-to
Content
I understand you, it's a patch against 2.7.

>+        def readline(self, size=-1):

In io.IOBase.readline() and in io.TextIOBase.readline() this parameter named "limit".

>+                if size is not None and len(str) == size:
>+                    break

It can be moved to the while condition:

             while chr != b"\n" and (size is None or len(str) < size):
History
Date User Action Args
2012-10-20 20:37:44serhiy.storchakasetrecipients: + serhiy.storchaka, barry, christian.heimes, r.david.murray
2012-10-20 20:37:44serhiy.storchakasetmessageid: <1350765464.77.0.469864093705.issue16042@psf.upfronthosting.co.za>
2012-10-20 20:37:44serhiy.storchakalinkissue16042 messages
2012-10-20 20:37:44serhiy.storchakacreate