swig/Examples/test-suite/python/li_std_stream_runme.py
2006-01-11 23:06:15 +00:00

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