git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7142 626c5289-ae23-0410-ae9c-e8d60b6d4f22
13 lines
215 B
Python
13 lines
215 B
Python
import li_std_wstream as std
|
|
|
|
|
|
|
|
a = std.A()
|
|
|
|
o = std.wostringstream()
|
|
|
|
o << a << u" " << 2345 << u" " << 1.435 << std.wends
|
|
|
|
if o.str() != "A class 2345 1.435\0":
|
|
print "\"%s\"" % (o.str(),)
|
|
raise RuntimeError
|