M lazy-lock.json M lua/custom/configs/lspconfig.lua M lua/custom/init.lua A lua/custom/journal.lua A nvim_venv/bin/Activate.ps1 A nvim_venv/bin/activate A nvim_venv/bin/activate.csh A nvim_venv/bin/activate.fish
12 lines
243 B
Python
12 lines
243 B
Python
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',)
|