uasyncio.core: Follow builtin "time" module rename to "utime".

pull/16/head
Paul Sokolovsky 2014-12-17 00:33:04 +02:00
rodzic 14b6b6945b
commit db6c9fbaa9
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -1,4 +1,7 @@
import time try:
import utime as time
except ImportError:
import time
import uheapq as heapq import uheapq as heapq
import logging import logging