@@ -712,7 +712,7 @@ class TestEvalNumexprPython(TestEvalNumexprPandas):
712
712
713
713
@classmethod
714
714
def setup_class (cls ):
715
- super (TestEvalNumexprPython , cls ).setup_class ()
715
+ super ().setup_class ()
716
716
import numexpr as ne
717
717
cls .ne = ne
718
718
cls .engine = 'numexpr'
@@ -738,7 +738,7 @@ class TestEvalPythonPython(TestEvalNumexprPython):
738
738
739
739
@classmethod
740
740
def setup_class (cls ):
741
- super (TestEvalPythonPython , cls ).setup_class ()
741
+ super ().setup_class ()
742
742
cls .engine = 'python'
743
743
cls .parser = 'python'
744
744
@@ -768,7 +768,7 @@ class TestEvalPythonPandas(TestEvalPythonPython):
768
768
769
769
@classmethod
770
770
def setup_class (cls ):
771
- super (TestEvalPythonPandas , cls ).setup_class ()
771
+ super ().setup_class ()
772
772
cls .engine = 'python'
773
773
cls .parser = 'pandas'
774
774
@@ -1494,7 +1494,7 @@ class TestOperationsNumExprPython(TestOperationsNumExprPandas):
1494
1494
1495
1495
@classmethod
1496
1496
def setup_class (cls ):
1497
- super (TestOperationsNumExprPython , cls ).setup_class ()
1497
+ super ().setup_class ()
1498
1498
cls .engine = 'numexpr'
1499
1499
cls .parser = 'python'
1500
1500
cls .arith_ops = expr ._arith_ops_syms + expr ._cmp_ops_syms
@@ -1570,7 +1570,7 @@ class TestOperationsPythonPython(TestOperationsNumExprPython):
1570
1570
1571
1571
@classmethod
1572
1572
def setup_class (cls ):
1573
- super (TestOperationsPythonPython , cls ).setup_class ()
1573
+ super ().setup_class ()
1574
1574
cls .engine = cls .parser = 'python'
1575
1575
cls .arith_ops = expr ._arith_ops_syms + expr ._cmp_ops_syms
1576
1576
cls .arith_ops = filter (lambda x : x not in ('in' , 'not in' ),
@@ -1581,7 +1581,7 @@ class TestOperationsPythonPandas(TestOperationsNumExprPandas):
1581
1581
1582
1582
@classmethod
1583
1583
def setup_class (cls ):
1584
- super (TestOperationsPythonPandas , cls ).setup_class ()
1584
+ super ().setup_class ()
1585
1585
cls .engine = 'python'
1586
1586
cls .parser = 'pandas'
1587
1587
cls .arith_ops = expr ._arith_ops_syms + expr ._cmp_ops_syms
@@ -1708,7 +1708,7 @@ class TestMathPythonPandas(TestMathPythonPython):
1708
1708
1709
1709
@classmethod
1710
1710
def setup_class (cls ):
1711
- super (TestMathPythonPandas , cls ).setup_class ()
1711
+ super ().setup_class ()
1712
1712
cls .engine = 'python'
1713
1713
cls .parser = 'pandas'
1714
1714
@@ -1717,7 +1717,7 @@ class TestMathNumExprPandas(TestMathPythonPython):
1717
1717
1718
1718
@classmethod
1719
1719
def setup_class (cls ):
1720
- super (TestMathNumExprPandas , cls ).setup_class ()
1720
+ super ().setup_class ()
1721
1721
cls .engine = 'numexpr'
1722
1722
cls .parser = 'pandas'
1723
1723
@@ -1726,7 +1726,7 @@ class TestMathNumExprPython(TestMathPythonPython):
1726
1726
1727
1727
@classmethod
1728
1728
def setup_class (cls ):
1729
- super (TestMathNumExprPython , cls ).setup_class ()
1729
+ super ().setup_class ()
1730
1730
cls .engine = 'numexpr'
1731
1731
cls .parser = 'python'
1732
1732
0 commit comments