Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils.py « ant_landscape - git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 595d52507740bfec78eca1161ebf9694cc39c576 (plain)
1
2
3
4
5
6
7
numexpr_available=False
try:
  import numexpr
  numexpr_available=True
except ImportError:
  pass