swig/Examples/python/performance/constructor/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

10 lines
139 B
Python

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