swig/Examples/python/performance/operator/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
154 B
Python

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