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 vajrasky
Recipients benjamin.peterson, doerwalter, georg.brandl, larry, ned.deily, python-dev, serhiy.storchaka, vajrasky
Date 2014-02-07.09:14:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1391764499.69.0.482845168927.issue20520@psf.upfronthosting.co.za>
In-reply-to
Content
The culprit:

diff -r b4e99bec0c8a Lib/test/test_codecs.py
--- a/Lib/test/test_codecs.py	Fri Feb 07 10:10:55 2014 +0200
+++ b/Lib/test/test_codecs.py	Fri Feb 07 17:14:12 2014 +0800
@@ -164,6 +164,8 @@
                 s = 10*(size*"a" + lineend + "xxx\n")
                 reader = getreader(s)
                 for i in range(10):
+                    if size==64 and self.encoding == 'utf-7' and lineend=='\u2028' and i == 3:
+                        import pdb; pdb.set_trace()
                     self.assertEqual(
                         reader.readline(keepends=True),
                         size*"a" + lineend,
History
Date User Action Args
2014-02-07 09:14:59vajraskysetrecipients: + vajrasky, doerwalter, georg.brandl, larry, benjamin.peterson, ned.deily, python-dev, serhiy.storchaka
2014-02-07 09:14:59vajraskysetmessageid: <1391764499.69.0.482845168927.issue20520@psf.upfronthosting.co.za>
2014-02-07 09:14:59vajraskylinkissue20520 messages
2014-02-07 09:14:59vajraskycreate