Skip to content

Commit

Permalink
remove date tag, unused decsciption from __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
newville committed Mar 3, 2024
1 parent 3644880 commit c0d3a4c
Showing 1 changed file with 1 addition and 21 deletions.
22 changes: 1 addition & 21 deletions asteval/__init__.py
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__']

0 comments on commit c0d3a4c

Please sign in to comment.