Added support for libp3heapq vs libheapq

This commit is contained in:
Josh Yelon 2007-02-12 19:43:09 +00:00
parent c4415bc1de
commit a68c6cc412

View File

@ -18,7 +18,10 @@ import time
import fnmatch import fnmatch
import string import string
import signal import signal
from libheapq import heappush, heappop, heapify try:
from libp3heapq import heappush, heappop, heapify
except:
from libheapq import heappush, heappop, heapify
import types import types
if __debug__: if __debug__: