diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-01-02 19:40:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-02 19:40:58 (GMT) |
commit | df0cc7139f599093f07209efd85b98929d1b0457 (patch) | |
tree | 8bdd6e804469d211f0c2e0371f28f76aeb1c0239 /testing | |
parent | cea4cb72909afe789e3020225196da30d4ac8444 (diff) | |
parent | 5c5bf0347c2f5be62240fc9e1cb8e9ef0ec2b84c (diff) | |
download | SCons-df0cc7139f599093f07209efd85b98929d1b0457.zip SCons-df0cc7139f599093f07209efd85b98929d1b0457.tar.gz SCons-df0cc7139f599093f07209efd85b98929d1b0457.tar.bz2 |
Merge pull request #3515 from bdbaddog/drop_py27_support
Drop Python 2.7 support on the road to SCons 4.0.0 release
Diffstat (limited to 'testing')
-rw-r--r-- | testing/framework/TestCmd.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testing/framework/TestCmd.py b/testing/framework/TestCmd.py index b98445c..6beed24 100644 --- a/testing/framework/TestCmd.py +++ b/testing/framework/TestCmd.py @@ -310,6 +310,7 @@ import types IS_PY3 = sys.version_info[0] == 3 IS_WINDOWS = sys.platform == 'win32' IS_64_BIT = sys.maxsize > 2**32 +IS_PYPY = hasattr(sys, 'pypy_translation_info') class null(object): pass |