swig/Examples/python/performance/hierarchy/runme.py
Jon Schlueter 7770715457 autopep8 cleanup of Examples/python whitespace
automated cleanup only of the Examples/python example code
2015-05-08 08:46:06 -04:00

11 lines
147 B
Python

import sys
sys.path.append('..')
import harness
def proc(mod):
x = mod.H()
for i in range(10000000):
x.func()
harness.run(proc)