def wid_showsigs(self, event):
import os
args = ['python', 'examples/Boyds/wid_showsigs.py']
args += inherited_vars()
# need to pass a string array otherwise treated as array of chars!
args += [str('shot_number=%d' % (self.shot))]
if pyfusion.VERBOSE>5:
print("args to spawn", args)
print("") # so we can see the output
os.spawnvp(os.P_NOWAIT,'python', args)
self.redraw()
#-------- End of class IntegerCtl:
评论列表
文章目录