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 0d4642ef..1c09caf1 100644
--- a/coverage/env.py
+++ b/coverage/env.py
@@ -81,6 +81,10 @@ class PYBEHAVIOR(object):
# Python 3.9a1 made sys.argv[0] and other reported files absolute paths.
report_absolute_files = (PYVERSION >= (3, 9))
+ # Python 3.9a2 changed how return/finally was traced, but it could be
+ # temporary.
+ bug39114 = (PYVERSION >= (3, 9, 0, 'alpha', 2))
+
# Coverage.py specifics.
# Are we using the C-implemented trace function?