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: test_normalization failures on some buildbot
Type: crash Stage:
Components: Tests Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: pitrou
Priority: high Keywords:

Created on 2008-12-16 13:09 by pitrou, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg77899 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2008-12-16 13:09
test_normalization intermittently fails on some buildbots with the
following message:

Traceback (most recent call last):
  File "./Lib/test/regrtest.py", line 596, in runtest_inner
    the_package = __import__(abstest, globals(), locals(), [])
  File
"/home/pybot/buildarea/3.0.klose-debian-ia64/build/Lib/test/test_normalization.py",
line 13, in <module>
    l = f.readline()
  File "/home/pybot/buildarea/3.0.klose-debian-ia64/build/Lib/io.py",
line 1810, in readline
    while self._read_chunk():
  File "/home/pybot/buildarea/3.0.klose-debian-ia64/build/Lib/io.py",
line 1559, in _read_chunk
    self._set_decoded_chars(self._decoder.decode(input_chunk, eof))
  File "/home/pybot/buildarea/3.0.klose-debian-ia64/build/Lib/io.py",
line 1292, in decode
    output = self.decoder.decode(input, final=final)
  File
"/home/pybot/buildarea/3.0.klose-debian-ia64/build/Lib/encodings/ascii.py",
line 26, in decode
    return codecs.ascii_decode(input, self.errors)[0]
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe1 in position
1129: ordinal not in range(128)
msg77914 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2008-12-16 15:24
Should be fixed (r67814, r67815).
History
Date User Action Args
2022-04-11 14:56:42adminsetgithub: 48924
2008-12-16 15:24:55pitrousetstatus: open -> closed
resolution: fixed
messages: + msg77914
2008-12-16 13:09:38pitroucreate