mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-02 18:03:56 -04:00
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…
x
Reference in New Issue
Block a user