We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 947bd76 commit fa898b0Copy full SHA for fa898b0
pandas/core/computation/engines.py
@@ -35,12 +35,9 @@ def _check_ne_builtin_clash(expr):
35
.format(expr=expr, s=s))
36
37
38
-class AbstractEngine:
39
-
+class AbstractEngine(metaclass=abc.ABCMeta):
40
"""Object serving as a base class for all engines."""
41
42
- __metaclass__ = abc.ABCMeta
43
44
has_neg_frac = False
45
46
def __init__(self, expr):
0 commit comments