@@ -630,7 +630,7 @@ def test_finally_in_loop(self):
630
630
631
631
632
632
def test_break_through_finally (self ):
633
- if env .PYBEHAVIOR .bug39114 :
633
+ if env .PYBEHAVIOR .bpo39114 :
634
634
self .xfail ("https://bugs.python.org/issue39114" )
635
635
if env .PYBEHAVIOR .finally_jumps_back :
636
636
arcz = ".1 12 23 34 3D 45 56 67 68 7A 7D 8A A3 A7 BC CD D."
@@ -656,7 +656,7 @@ def test_break_through_finally(self):
656
656
)
657
657
658
658
def test_continue_through_finally (self ):
659
- if env .PYBEHAVIOR .bug39114 :
659
+ if env .PYBEHAVIOR .bpo39114 :
660
660
self .xfail ("https://bugs.python.org/issue39114" )
661
661
if env .PYBEHAVIOR .finally_jumps_back :
662
662
arcz = ".1 12 23 34 3D 45 56 67 68 73 7A 8A A3 A7 BC CD D."
@@ -695,7 +695,7 @@ def test_finally_in_loop_bug_92(self):
695
695
)
696
696
697
697
def test_bug_212 (self ):
698
- if env .PYBEHAVIOR .bug39114 :
698
+ if env .PYBEHAVIOR .bpo39114 :
699
699
self .xfail ("https://bugs.python.org/issue39114" )
700
700
# "except Exception as e" is crucial here.
701
701
# Bug 212 said that the "if exc" line was incorrectly marked as only
@@ -819,7 +819,7 @@ def test_multiple_except_clauses(self):
819
819
)
820
820
821
821
def test_return_finally (self ):
822
- if env .PYBEHAVIOR .bug39114 :
822
+ if env .PYBEHAVIOR .bpo39114 :
823
823
self .xfail ("https://bugs.python.org/issue39114" )
824
824
if env .PYBEHAVIOR .finally_jumps_back :
825
825
arcz = ".1 12 29 9A AB BC C-1 -23 34 45 5-2 57 75 38 8-2"
@@ -843,7 +843,7 @@ def check_token(data):
843
843
)
844
844
845
845
def test_except_jump_finally (self ):
846
- if env .PYBEHAVIOR .bug39114 :
846
+ if env .PYBEHAVIOR .bpo39114 :
847
847
self .xfail ("https://bugs.python.org/issue39114" )
848
848
if env .PYBEHAVIOR .finally_jumps_back :
849
849
arcz = (
@@ -899,7 +899,7 @@ def func(x):
899
899
)
900
900
901
901
def test_else_jump_finally (self ):
902
- if env .PYBEHAVIOR .bug39114 :
902
+ if env .PYBEHAVIOR .bpo39114 :
903
903
self .xfail ("https://bugs.python.org/issue39114" )
904
904
if env .PYBEHAVIOR .finally_jumps_back :
905
905
arcz = (
0 commit comments