git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6814 626c5289-ae23-0410-ae9c-e8d60b6d4f22
14 lines
197 B
Python
14 lines
197 B
Python
import li_std_stream as std
|
|
|
|
|
|
|
|
a = std.A()
|
|
|
|
o = std.ostringstream()
|
|
|
|
o << a << " " << 2345 << " " << 1.435
|
|
|
|
|
|
if o.str() != "A class 2345 1.435":
|
|
print "\"%s\"" % (o.str(),)
|
|
raise RuntimeError
|