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_lib2to3: output that looks like a failure on Windows 7
Type: behavior Stage:
Components: Tests Versions: Python 3.3
process
Status: closed Resolution: duplicate
Dependencies: Superseder: test_all_project_files() expected failure
View: 13125
Assigned To: Nosy List: benjamin.peterson, nadeem.vawda, skrah
Priority: normal Keywords:

Created on 2012-02-24 18:30 by skrah, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg154144 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2012-02-24 18:30
This failure occurs on the Windows 7 buildbot:

[302/364] test_lib2to3
--- D:\cygwin\home\db3l\buildarea\3.x.bolen-windows7\build\lib\lib2to3\tests\test_main.py	2012-02-13 21:57:29.273004000 -0500
+++ @	2012-02-24 11:59:54.408966500 -0500
@@ -42,7 +42,7 @@
             sys.stderr = save_stderr
 
     def test_unencodable_diff(self):
-        input_stream = io.StringIO("print 'nothing'\nprint u'über'\n")
+        input_stream = io.StringIO("print 'nothing'\nprint u'�ber'\n")
         out = io.BytesIO()
         out_enc = codecs.getwriter("ascii")(out)
         err = io.StringIO()
msg154146 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2012-02-24 18:40
Oops, this is just undesirable output. Is there any chance to fix
this?
msg154147 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2012-02-24 18:42
Yes, though, it's not high priority atm.
History
Date User Action Args
2022-04-11 14:57:27adminsetgithub: 58317
2012-02-26 21:08:44pitrousetstatus: open -> closed
resolution: duplicate
superseder: test_all_project_files() expected failure
2012-02-24 19:05:31nadeem.vawdasetnosy: + nadeem.vawda
2012-02-24 18:42:34benjamin.petersonsetmessages: + msg154147
2012-02-24 18:40:58skrahsetmessages: + msg154146
title: test_lib2to3: failure on Windows 7 -> test_lib2to3: output that looks like a failure on Windows 7
2012-02-24 18:30:15skrahcreate