@@ -769,7 +769,7 @@ def __radd__(self, other):
769
769
770
770
def test_radd ():
771
771
with_radd = With_radd ()
772
- f "" + with_radd
772
+ "" + with_radd
773
773
774
774
# object.__rsub__(self, other)
775
775
class With_rsub :
@@ -780,7 +780,7 @@ def __rsub__(self, other):
780
780
781
781
def test_rsub ():
782
782
with_rsub = With_rsub ()
783
- f "" - with_rsub
783
+ "" - with_rsub
784
784
785
785
# object.__rmul__(self, other)
786
786
class With_rmul :
@@ -791,7 +791,7 @@ def __rmul__(self, other):
791
791
792
792
def test_rmul ():
793
793
with_rmul = With_rmul ()
794
- f "" * with_rmul
794
+ "" * with_rmul
795
795
796
796
# object.__rmatmul__(self, other)
797
797
class With_rmatmul :
@@ -802,7 +802,7 @@ def __rmatmul__(self, other):
802
802
803
803
def test_rmatmul ():
804
804
with_rmatmul = With_rmatmul ()
805
- f "" @ with_rmatmul
805
+ "" @ with_rmatmul
806
806
807
807
# object.__rtruediv__(self, other)
808
808
class With_rtruediv :
@@ -813,7 +813,7 @@ def __rtruediv__(self, other):
813
813
814
814
def test_rtruediv ():
815
815
with_rtruediv = With_rtruediv ()
816
- f "" / with_rtruediv
816
+ "" / with_rtruediv
817
817
818
818
# object.__rfloordiv__(self, other)
819
819
class With_rfloordiv :
@@ -824,7 +824,7 @@ def __rfloordiv__(self, other):
824
824
825
825
def test_rfloordiv ():
826
826
with_rfloordiv = With_rfloordiv ()
827
- f "" // with_rfloordiv
827
+ "" // with_rfloordiv
828
828
829
829
# object.__rmod__(self, other)
830
830
class With_rmod :
@@ -846,7 +846,7 @@ def __rdivmod__(self, other):
846
846
847
847
def test_rdivmod ():
848
848
with_rdivmod = With_rdivmod ()
849
- divmod (f "" , with_rdivmod )
849
+ divmod ("" , with_rdivmod )
850
850
851
851
# object.__rpow__(self, other[, modulo])
852
852
class With_rpow :
@@ -857,11 +857,11 @@ def __rpow__(self, other):
857
857
858
858
def test_rpow ():
859
859
with_rpow = With_rpow ()
860
- pow (f "" , with_rpow )
860
+ pow ("" , with_rpow )
861
861
862
862
def test_rpow_op ():
863
863
with_rpow = With_rpow ()
864
- f "" ** with_rpow
864
+ "" ** with_rpow
865
865
866
866
# object.__rlshift__(self, other)
867
867
class With_rlshift :
@@ -872,7 +872,7 @@ def __rlshift__(self, other):
872
872
873
873
def ftest_rlshift (): # TypeError: unsupported operand type(s) for >>: 'str' and 'With_rlshift'
874
874
with_rlshift = With_rlshift ()
875
- f "" >> with_rlshift
875
+ "" >> with_rlshift
876
876
877
877
# object.__rrshift__(self, other)
878
878
class With_rrshift :
@@ -883,7 +883,7 @@ def __rrshift__(self, other):
883
883
884
884
def ftest_rrshift (): # TypeError: unsupported operand type(s) for <<: 'str' and 'With_rrshift'
885
885
with_rrshift = With_rrshift ()
886
- f "" << with_rrshift
886
+ "" << with_rrshift
887
887
888
888
# object.__rand__(self, other)
889
889
class With_rand :
@@ -894,7 +894,7 @@ def __rand__(self, other):
894
894
895
895
def test_rand ():
896
896
with_rand = With_rand ()
897
- f "" & with_rand
897
+ "" & with_rand
898
898
899
899
# object.__rxor__(self, other)
900
900
class With_rxor :
@@ -905,7 +905,7 @@ def __rxor__(self, other):
905
905
906
906
def test_rxor ():
907
907
with_rxor = With_rxor ()
908
- f "" ^ with_rxor
908
+ "" ^ with_rxor
909
909
910
910
# object.__ror__(self, other)
911
911
class With_ror :
@@ -916,7 +916,7 @@ def __ror__(self, other):
916
916
917
917
def test_ror ():
918
918
with_ror = With_ror ()
919
- f "" | with_ror
919
+ "" | with_ror
920
920
921
921
# object.__iadd__(self, other)
922
922
class With_iadd :
0 commit comments