diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-07-20 21:52:53 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-07-20 21:52:53 -0400 |
commit | f1b8cda800984363fc58e809326d2acef86a1d6a (patch) | |
tree | f50eace87c69e2a699d7f42845ce1a2ffea5094a /pybanner.py | |
parent | 5504149935b6857f4b4bcab2b038042e222d041c (diff) | |
download | python-coveragepy-git-f1b8cda800984363fc58e809326d2acef86a1d6a.tar.gz |
Move the banner into igor.py
Diffstat (limited to 'pybanner.py')
-rw-r--r-- | pybanner.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/pybanner.py b/pybanner.py deleted file mode 100644 index c7d2a2ad..00000000 --- a/pybanner.py +++ /dev/null @@ -1,16 +0,0 @@ -# For printing the python version during tests. - -import platform -import sys - -try: - impl = platform.python_implementation() -except AttributeError: - impl = "Python" - -version = platform.python_version() - -if '__pypy__' in sys.builtin_module_names: - version += " (pypy %s)" % ".".join([str(v) for v in sys.pypy_version_info]) - -print('=== %s %s %s (%s) ===' % (impl, version, sys.argv[1], sys.executable)) |