diff mercurial/windows.py @ 9174:705278e70457

Fix test-demandimport and test-trusted under Windows The Windows-only wrapper around stdout is causing both of these tests to fail. test-demandimport fails because it tries to print repr(sys.stdout). Use stderr instead since that is not wrapped. test-trusted fails because the wrapper doesn't handle softspace and an unexpected extra space gets printed.
author James Abbatiello <abbeyj at gmail.com>
date Tue, 14 Jul 2009 22:38:12 -0400
parents 3d456bf32f18
children 40196d036a71 bc6b0fef9495
line wrap: on
line diff
--- a/mercurial/windows.py	Fri Jul 17 13:31:12 2009 +0200
+++ b/mercurial/windows.py	Tue Jul 14 22:38:12 2009 -0400
@@ -41,6 +41,7 @@
             limit = 16000
             l = len(s)
             start = 0
+            self.softspace = 0;
             while start < l:
                 end = start + limit
                 self.fp.write(s[start:end])