git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/szager-python-builtin@12450 626c5289-ae23-0410-ae9c-e8d60b6d4f22
11 lines
211 B
Python
11 lines
211 B
Python
#!/usr/bin/env python
|
|
|
|
import Simple_baseline
|
|
import time
|
|
|
|
t1 = time.clock()
|
|
x = Simple_baseline.H()
|
|
for i in range(10000000) :
|
|
x.func()
|
|
t2 = time.clock()
|
|
print "Simple_baseline took %f seconds" % (t2 - t1)
|