You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from .abstract_nodes import List as AbstractList
|
|
from .ast import Token
|
|
|
|
|
|
class List(AbstractList):
|
|
pass
|
|
|
|
|
|
class NumExprEvaluate(Token):
|
|
"""represents a call to :class:`numexpr`s :func:`evaluate`"""
|
|
__slots__ = _fields = ('expr',)
|