--- examples/python/readSBML.py.dist 2020-11-19 20:17:49.000000000 +0900 +++ examples/python/readSBML.py 2020-12-01 03:30:25.000000000 +0900 @@ -54,7 +54,7 @@ return 1 filename = args[1] - current = time.clock() + current = time.time() document = readSBML(filename) errors = document.getNumErrors() @@ -62,7 +62,7 @@ print() print(" filename: " + filename) print(" file size: " + str(os.stat(filename).st_size)) - print(" read time (ms): " + str(time.clock() - current)) + print(" read time (ms): " + str((time.time() - current)*1000)) print(" validation error(s): " + str(errors)) print() document.printErrors()