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: 6588f75b22b36fcf1ebc259fe6371d8c31e9d6c3 (plain)
1
2
3
4
5
6
numexpr_available=False
try:
    import numexpr
    numexpr_available=True
except ImportError:
    pass