[Python-checkins] r72994 - in sandbox/trunk/2to3: 2to3 lib2to3/fixes/fix_isinstance.py lib2to3/fixes/fix_reduce.py lib2to3/tests/data/README lib2to3/tests/test_parser.py

benjamin.peterson python-checkins at python.org
Thu May 28 22:32:54 CEST 2009


Author: benjamin.peterson
Date: Thu May 28 22:32:54 2009
New Revision: 72994

Log:
fix test_all_fixers on Windows #6134

Modified:
   sandbox/trunk/2to3/2to3   (props changed)
   sandbox/trunk/2to3/lib2to3/fixes/fix_isinstance.py   (props changed)
   sandbox/trunk/2to3/lib2to3/fixes/fix_reduce.py   (props changed)
   sandbox/trunk/2to3/lib2to3/tests/data/README   (props changed)
   sandbox/trunk/2to3/lib2to3/tests/test_parser.py

Modified: sandbox/trunk/2to3/lib2to3/tests/test_parser.py
==============================================================================
--- sandbox/trunk/2to3/lib2to3/tests/test_parser.py	(original)
+++ sandbox/trunk/2to3/lib2to3/tests/test_parser.py	Thu May 28 22:32:54 2009
@@ -198,7 +198,7 @@
 
 
 def diff(fn, result):
-    f = open("@", "w")
+    f = open("@", "wb")
     try:
         f.write(result)
     finally:


More information about the Python-checkins mailing list