summaryrefslogtreecommitdiff
path: root/coverage
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2020-10-10 13:12:16 -0400
committerNed Batchelder <ned@nedbatchelder.com>2020-10-10 13:12:16 -0400
commitf2598ce9ea5c6c1e126ac32a9aa05d87e84685f9 (patch)
treea2735f551ad0cd7ea7a3111f35277307b5c8bc6e /coverage
parent0e179ed1ed055cd6de19f5c75f3021532ab03992 (diff)
downloadpython-coveragepy-git-nedbat/pythons.tar.gz
PyPy 3.7 doesn't act exactly like CPython 3.7nedbat/pythons
Diffstat (limited to 'coverage')
-rw-r--r--coverage/env.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/env.py b/coverage/env.py
index b5da3b47..80153ecf 100644
--- a/coverage/env.py
+++ b/coverage/env.py
@@ -66,7 +66,7 @@ class PYBEHAVIOR(object):
# used to be an empty string (meaning the current directory). It changed
# to be the actual path to the current directory, so that os.chdir wouldn't
# affect the outcome.
- actual_syspath0_dash_m = (PYVERSION >= (3, 7, 0, 'beta', 3))
+ actual_syspath0_dash_m = (not PYPY) and (PYVERSION >= (3, 7, 0, 'beta', 3))
# When a break/continue/return statement in a try block jumps to a finally
# block, does the finally block do the break/continue/return (pre-3.8), or