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 rbcollins
Recipients David.Edelsohn, ddriddle, python-dev, r.david.murray, rbcollins
Date 2015-08-19.22:36:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1440023809.1.0.563152185509.issue24054@psf.upfronthosting.co.za>
In-reply-to
Content
So it looks like one failure is:
FAIL: test_getline (test.test_linecache.GoodUnicode)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\cygwin\home\db3l\buildarea\3.x.bolen-windows7\build\lib\test\test_linecache.py", line 63, in test_getline
    self.assertEqual(line, cached_line)
AssertionError: 'á\n' != '�\n'
- á
+ �

and the other is:


======================================================================
ERROR: test_getline (test.test_linecache.GoodUnicode)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-debian-z/build/Lib/test/test_linecache.py", line 58, in test_getline
    for index, line in enumerate(fp):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-debian-z/build/Lib/encodings/ascii.py", line 26, in decode
    return codecs.ascii_decode(input, self.errors)[0]
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 0: ordinal not in range(128)

We need to figure out if the failure is spurious/local capabilities (e.g. we should skip the test here) or a bug in the test. Where can I find out more about the config of the buildbots?
History
Date User Action Args
2015-08-19 22:36:49rbcollinssetrecipients: + rbcollins, r.david.murray, python-dev, David.Edelsohn, ddriddle
2015-08-19 22:36:49rbcollinssetmessageid: <1440023809.1.0.563152185509.issue24054@psf.upfronthosting.co.za>
2015-08-19 22:36:49rbcollinslinkissue24054 messages
2015-08-19 22:36:48rbcollinscreate