-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove date tag, unused decsciption from __init__.py
- Loading branch information
Showing
1 changed file
with
1 addition
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,7 @@ | ||
""" | ||
ASTEVAL provides a numpy-aware, safe(ish) "eval" function | ||
Emphasis is on mathematical expressions, and so numpy ufuncs | ||
are used if available. Symbols are held in the Interpreter | ||
symbol table 'symtable': a simple dictionary supporting a | ||
simple, flat namespace. | ||
Expressions can be compiled into ast node for later evaluation, | ||
using the values in the symbol table current at evaluation time. | ||
version: 0.9.31 | ||
last update: 2023-July-16 | ||
License: MIT | ||
Author: Matthew Newville <[email protected]> | ||
Center for Advanced Radiation Sources, | ||
The University of Chicago | ||
""" | ||
|
||
from .version import version as __version__ | ||
from .asteval import Interpreter | ||
from .astutils import (NameFinder, get_ast_names, make_symbol_table, | ||
valid_symbol_name) | ||
|
||
from .version import version as __version__ | ||
|
||
__all__ = ['Interpreter', 'NameFinder', 'valid_symbol_name', | ||
'make_symbol_table', 'get_ast_names', '__version__'] |