summaryrefslogtreecommitdiff
path: root/pybanner.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2012-07-20 21:52:53 -0400
committerNed Batchelder <ned@nedbatchelder.com>2012-07-20 21:52:53 -0400
commit1b87f559a823c64e5673fbd671cfd55cf9ee177f (patch)
treec875f0b5630d05544f4e023978163af2f12eb39e /pybanner.py
parent48379cee95cc161174d342167cc528bf4a0fd925 (diff)
downloadpython-coveragepy-1b87f559a823c64e5673fbd671cfd55cf9ee177f.tar.gz
Move the banner into igor.py
Diffstat (limited to 'pybanner.py')
-rw-r--r--pybanner.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/pybanner.py b/pybanner.py
deleted file mode 100644
index c7d2a2a..0000000
--- 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))