Commit b515eb5c authored by Fantix King's avatar Fantix King Committed by Denis Bilenko

Fix Queue -> queue, refs #38.

parent e71f7cf6
...@@ -5,7 +5,10 @@ or not). ...@@ -5,7 +5,10 @@ or not).
This module is missing 'Thread' class, but includes 'Queue'. This module is missing 'Thread' class, but includes 'Queue'.
""" """
from Queue import Full, Empty try:
from Queue import Full, Empty
except ImportError:
from queue import Full, Empty
from collections import deque from collections import deque
import heapq import heapq
from time import time as _time, sleep as _sleep from time import time as _time, sleep as _sleep
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment