@@ -610,9 +610,9 @@ def test_length_hint():
610610class With_getitem :
611611
612612 def __getitem__ (self , key ):
613- SINK2 (key ) # Flow not found
614- SINK1 (self ) # Flow not found
615- OK () # Call not found
613+ SINK2 (key )
614+ SINK1 (self )
615+ OK ()
616616 return ""
617617
618618
@@ -627,10 +627,10 @@ def test_getitem():
627627class With_setitem :
628628
629629 def __setitem__ (self , key , value ):
630- SINK3 (value ) # Flow not found
631- SINK2 (key ) # Flow not found
632- SINK1 (self ) # Flow not found
633- OK () # Call not found
630+ SINK3 (value )
631+ SINK2 (key )
632+ SINK1 (self )
633+ OK ()
634634
635635
636636def test_setitem ():
@@ -645,9 +645,9 @@ def test_setitem():
645645class With_delitem :
646646
647647 def __delitem__ (self , key ):
648- SINK2 (key ) # Flow not found
649- SINK1 (self ) # Flow not found
650- OK () # Call not found
648+ SINK2 (key )
649+ SINK1 (self )
650+ OK ()
651651
652652
653653def test_delitem ():
@@ -725,9 +725,9 @@ def test_contains():
725725class With_add :
726726
727727 def __add__ (self , other ):
728- SINK2 (other ) # Flow not found
729- SINK1 (self ) # Flow not found
730- OK () # Call not found
728+ SINK2 (other )
729+ SINK1 (self )
730+ OK ()
731731 return self
732732
733733
@@ -742,9 +742,9 @@ def test_add():
742742class With_sub :
743743
744744 def __sub__ (self , other ):
745- SINK2 (other ) # Flow not found
746- SINK1 (self ) # Flow not found
747- OK () # Call not found
745+ SINK2 (other )
746+ SINK1 (self )
747+ OK ()
748748 return self
749749
750750
@@ -759,9 +759,9 @@ def test_sub():
759759class With_mul :
760760
761761 def __mul__ (self , other ):
762- SINK2 (other ) # Flow not found
763- SINK1 (self ) # Flow not found
764- OK () # Call not found
762+ SINK2 (other )
763+ SINK1 (self )
764+ OK ()
765765 return self
766766
767767
@@ -776,9 +776,9 @@ def test_mul():
776776class With_matmul :
777777
778778 def __matmul__ (self , other ):
779- SINK2 (other ) # Flow not found
780- SINK1 (self ) # Flow not found
781- OK () # Call not found
779+ SINK2 (other )
780+ SINK1 (self )
781+ OK ()
782782 return self
783783
784784
@@ -793,9 +793,9 @@ def test_matmul():
793793class With_truediv :
794794
795795 def __truediv__ (self , other ):
796- SINK2 (other ) # Flow not found
797- SINK1 (self ) # Flow not found
798- OK () # Call not found
796+ SINK2 (other )
797+ SINK1 (self )
798+ OK ()
799799 return self
800800
801801
@@ -810,9 +810,9 @@ def test_truediv():
810810class With_floordiv :
811811
812812 def __floordiv__ (self , other ):
813- SINK2 (other ) # Flow not found
814- SINK1 (self ) # Flow not found
815- OK () # Call not found
813+ SINK2 (other )
814+ SINK1 (self )
815+ OK ()
816816 return self
817817
818818
@@ -827,9 +827,9 @@ def test_floordiv():
827827class With_mod :
828828
829829 def __mod__ (self , other ):
830- SINK2 (other ) # Flow not found
831- SINK1 (self ) # Flow not found
832- OK () # Call not found
830+ SINK2 (other )
831+ SINK1 (self )
832+ OK ()
833833 return self
834834
835835
@@ -861,9 +861,9 @@ def test_divmod():
861861class With_pow :
862862
863863 def __pow__ (self , other ):
864- SINK2 (other ) # Flow not found
865- SINK1 (self ) # Flow not found
866- OK () # Call not found
864+ SINK2 (other )
865+ SINK1 (self )
866+ OK ()
867867 return self
868868
869869
@@ -884,9 +884,9 @@ def test_pow_op():
884884class With_lshift :
885885
886886 def __lshift__ (self , other ):
887- SINK2 (other ) # Flow not found
888- SINK1 (self ) # Flow not found
889- OK () # Call not found
887+ SINK2 (other )
888+ SINK1 (self )
889+ OK ()
890890 return self
891891
892892
@@ -901,9 +901,9 @@ def test_lshift():
901901class With_rshift :
902902
903903 def __rshift__ (self , other ):
904- SINK2 (other ) # Flow not found
905- SINK1 (self ) # Flow not found
906- OK () # Call not found
904+ SINK2 (other )
905+ SINK1 (self )
906+ OK ()
907907 return self
908908
909909
@@ -918,9 +918,9 @@ def test_rshift():
918918class With_and :
919919
920920 def __and__ (self , other ):
921- SINK2 (other ) # Flow not found
922- SINK1 (self ) # Flow not found
923- OK () # Call not found
921+ SINK2 (other )
922+ SINK1 (self )
923+ OK ()
924924 return self
925925
926926
@@ -935,9 +935,9 @@ def test_and():
935935class With_xor :
936936
937937 def __xor__ (self , other ):
938- SINK2 (other ) # Flow not found
939- SINK1 (self ) # Flow not found
940- OK () # Call not found
938+ SINK2 (other )
939+ SINK1 (self )
940+ OK ()
941941 return self
942942
943943
@@ -952,9 +952,9 @@ def test_xor():
952952class With_or :
953953
954954 def __or__ (self , other ):
955- SINK2 (other ) # Flow not found
956- SINK1 (self ) # Flow not found
957- OK () # Call not found
955+ SINK2 (other )
956+ SINK1 (self )
957+ OK ()
958958 return self
959959
960960
0 commit comments