7 lines
104 B
Python
7 lines
104 B
Python
numexpr_available=False
|
|
try:
|
|
import numexpr
|
|
numexpr_available=True
|
|
except ImportError:
|
|
pass
|