aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/pure-eval/pure_eval/__init__.py
blob: 0040e318a6e0847a79f8ffad8b44ffe8cc684379 (plain) (blame)
1
2
3
4
5
6
7
8
from .core import Evaluator, CannotEval, group_expressions, is_expression_interesting
from .my_getattr_static import getattr_static

try:
    from .version import __version__
except ImportError:
    # version.py is auto-generated with the git tag when building
    __version__ = "???"