DEBSOURCES
Skip Quicknav
sources / swig / 4.0.2-1 / Examples / python / performance / hierarchy / runme.py
1234567891011
import sys sys.path.append("..") import harness def proc(mod): x = mod.H() for i in range(10000000): x.func() harness.run(proc)