From 14b76135d39bbb11e42a49565396b13d020dd87a Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 31 Dec 2019 11:22:42 -0500 Subject: xfail a test due to a PyPy3 7.3.0 change --- coverage/env.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'coverage/env.py') diff --git a/coverage/env.py b/coverage/env.py index 1c09caf1..175b3092 100644 --- a/coverage/env.py +++ b/coverage/env.py @@ -11,19 +11,22 @@ import sys WINDOWS = sys.platform == "win32" LINUX = sys.platform.startswith("linux") +# Python versions. +PYVERSION = sys.version_info +PY2 = PYVERSION < (3, 0) +PY3 = PYVERSION >= (3, 0) + # Python implementations. PYPY = (platform.python_implementation() == 'PyPy') if PYPY: PYPYVERSION = sys.pypy_version_info +PYPY2 = PYPY and PY2 +PYPY3 = PYPY and PY3 + JYTHON = (platform.python_implementation() == 'Jython') IRONPYTHON = (platform.python_implementation() == 'IronPython') -# Python versions. -PYVERSION = sys.version_info -PY2 = PYVERSION < (3, 0) -PY3 = PYVERSION >= (3, 0) - # Python behavior class PYBEHAVIOR(object): """Flags indicating this Python's behavior.""" -- cgit v1.2.1