diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2013-10-19 21:21:10 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2013-10-19 21:21:10 -0400 |
commit | 18ba48b6b119f07f5c738c7fd36c2d2ede04f67e (patch) | |
tree | 17a656943635c42860d4b3751532468f952bd6c3 /tests/osinfo.py | |
parent | b257ecb0bdcfae09d74ab95ad621bed19934b555 (diff) | |
download | python-coveragepy-git-18ba48b6b119f07f5c738c7fd36c2d2ede04f67e.tar.gz |
We only run on 2.6, 2.7, 3.2, 3.3 now.
--HG--
branch : 4.0
Diffstat (limited to 'tests/osinfo.py')
-rw-r--r-- | tests/osinfo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/osinfo.py b/tests/osinfo.py index 25c3a7c6..acbec231 100644 --- a/tests/osinfo.py +++ b/tests/osinfo.py @@ -2,7 +2,7 @@ import sys -if sys.version_info >= (2, 5) and sys.platform == 'win32': +if sys.platform == 'win32': # Windows implementation def process_ram(): """How much RAM is this process using? (Windows)""" |