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.
12 lines
243 B
12 lines
243 B
|
7 days ago
|
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',)
|