We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0482302 commit 13f15b0Copy full SHA for 13f15b0
coverage/env.py
@@ -72,7 +72,7 @@ class PYBEHAVIOR(object):
72
# block, does the finally block do the break/continue/return (pre-3.8), or
73
# does the finally jump back to the break/continue/return (3.8) to do the
74
# work?
75
- finally_jumps_back = (PYVERSION >= (3, 8))
+ finally_jumps_back = ((3, 8) <= PYVERSION < (3, 10))
76
77
# When a function is decorated, does the trace function get called for the
78
# @-line and also the def-line (new behavior in 3.8)? Or just the @-line
0 commit comments