Added support for libp3heapq vs libheapq
This commit is contained in:
parent
c4415bc1de
commit
a68c6cc412
|
|
@ -18,7 +18,10 @@ import time
|
|||
import fnmatch
|
||||
import string
|
||||
import signal
|
||||
from libheapq import heappush, heappop, heapify
|
||||
try:
|
||||
from libp3heapq import heappush, heappop, heapify
|
||||
except:
|
||||
from libheapq import heappush, heappop, heapify
|
||||
import types
|
||||
|
||||
if __debug__:
|
||||
|
|
|
|||
Loading…
Reference in New Issue