comparison tests/test-demandimport.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 807f3f5c60e9
children 4c50552fc9bc
comparison
equal deleted inserted replaced
9168:e8441597d2ee 9174:705278e70457
34 print "fred =", f(fred) 34 print "fred =", f(fred)
35 print "fred.sub =", f(fred.sub) 35 print "fred.sub =", f(fred.sub)
36 print "fred =", f(fred) 36 print "fred =", f(fred)
37 37
38 print "re =", f(re) 38 print "re =", f(re)
39 print "re.stdout =", f(re.stdout) 39 print "re.stderr =", f(re.stderr)
40 print "re =", f(re) 40 print "re =", f(re)