From 0bb2f38aaf15550101054110a00db9e242e0839d Mon Sep 17 00:00:00 2001 From: Damien George Date: Wed, 22 Oct 2014 23:48:39 +0100 Subject: [PATCH] uasyncio: Use uheapq instead of heapq. Conflicts: uasyncio/uasyncio/__init__.py --- uasyncio.core/uasyncio/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uasyncio.core/uasyncio/core.py b/uasyncio.core/uasyncio/core.py index ae5748f3..0046cb9b 100644 --- a/uasyncio.core/uasyncio/core.py +++ b/uasyncio.core/uasyncio/core.py @@ -1,5 +1,5 @@ import time -import heapq +import uheapq as heapq import logging