/opt/imh-python/lib/python3.9/site-packages/astroid/nodes
NameSizeModeActions
scoped_nodes/-0755rm
__pycache__/-0755rm
as_string.py263170644editdlrm
const.py8070644editdlrm
node_classes.py1724390644editdlrm
node_ng.py270120644editdlrm
utils.py4330644editdlrm
_base_nodes.py239910644editdlrm
__init__.py47440644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/astroid/nodes/const.py (807B)
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html # For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE # Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt OP_PRECEDENCE = { op: precedence for precedence, ops in enumerate( [ ["Lambda"], # lambda x: x + 1 ["IfExp"], # 1 if True else 2 ["or"], ["and"], ["not"], ["Compare"], # in, not in, is, is not, <, <=, >, >=, !=, == ["|"], ["^"], ["&"], ["<<", ">>"], ["+", "-"], ["*", "@", "/", "//", "%"], ["UnaryOp"], # +, -, ~ ["**"], ["Await"], ] ) for op in ops }