DEBSOURCES
Skip Quicknav
sources / swig / 3.0.2-1 / Examples / python / performance / constructor / runme.py
123456789
import sys sys.path.append('..') import harness def proc (mod) : for i in range(1000000) : x = mod.MyClass() harness.run(proc)