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