Files
cpp-thirdparty/winx64/bin/swig-3.0.12/Examples/python/performance/func/runme.py
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

12 lines
153 B
Python

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