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