You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
434 B
Python
18 lines
434 B
Python
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__ = "???"
|
|
|
|
__all__ = [
|
|
"Evaluator",
|
|
"CannotEval",
|
|
"group_expressions",
|
|
"is_expression_interesting",
|
|
"getattr_static",
|
|
"__version__",
|
|
]
|