summaryrefslogtreecommitdiff
path: root/coverage/env.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/env.py')
-rw-r--r--coverage/env.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/coverage/env.py b/coverage/env.py
index 64d93e21..cf2f9d26 100644
--- a/coverage/env.py
+++ b/coverage/env.py
@@ -100,6 +100,10 @@ class PYBEHAVIOR:
# Some words are keywords in some places, identifiers in other places.
soft_keywords = (PYVERSION >= (3, 10))
+ # CPython 3.11 now jumps to the decorator line again while executing
+ # the decorator.
+ trace_decorator_line_again = (PYVERSION > (3, 11, 0, 'alpha', 3, 0))
+
# Coverage.py specifics.