From 61bfc2dba4c142757cc997259f16906b364dfff6 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Fri, 3 Apr 2015 00:13:50 +0300 Subject: [PATCH] pystone: Use "utime" module to allow run without dependencies. --- pystone/pystone.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pystone/pystone.py b/pystone/pystone.py index a41f1e53..2280c536 100755 --- a/pystone/pystone.py +++ b/pystone/pystone.py @@ -41,7 +41,7 @@ Version History: LOOPS = 50000 -from time import clock +from utime import clock __version__ = "1.2"