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