1 from test
import test_support
4 # SF bug 480215: softspace confused in nested print
5 f
= StringIO
.StringIO()
11 print >> f
, C(), 'c ', 'd\t', 'e'
13 # In 2.2 & earlier, this printed ' a\nbc d\te\nf g\n'
14 test_support
.vereq(f
.getvalue(), 'a\nb c d\te\nf g\n')