File tree Expand file tree Collapse file tree 3 files changed +0
-25
lines changed
pandas-stubs/core/computation Expand file tree Collapse file tree 3 files changed +0
-25
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11import ast
22
3- from pandas .core .computation .ops import Term as Term
43from pandas .core .computation .scope import Scope as Scope
54
65class BaseExprVisitor (ast .NodeVisitor ):
Original file line number Diff line number Diff line change @@ -3,19 +3,10 @@ from typing import Any
33from pandas .core .computation import (
44 expr as expr ,
55 ops as ops ,
6- scope as _scope ,
76)
87from pandas .core .computation .expr import BaseExprVisitor as BaseExprVisitor
98from pandas .core .indexes .base import Index
109
11- class PyTablesScope (_scope .Scope ):
12- queryables : dict [str , Any ]
13-
14- class Term (ops .Term ):
15- env = ...
16-
17- class Constant (Term ): ...
18-
1910class BinOp (ops .BinOp ):
2011 op : str
2112 queryables : dict [str , Any ]
You can’t perform that action at this time.
0 commit comments