summaryrefslogtreecommitdiff
path: root/Tools/pybench
diff options
context:
space:
mode:
authorJeffrey Yasskin <jyasskin@gmail.com>2008-03-08 21:35:15 +0000
committerJeffrey Yasskin <jyasskin@gmail.com>2008-03-08 21:35:15 +0000
commit6fdbdb4bf1016be36fe0c0b36c8f6ea438ca6c26 (patch)
treeb618c0d363e461a0fad1b1df1336dfce40490b4d /Tools/pybench
parent65605a560b738cd6845ee3b50f04a04d4ffb4a70 (diff)
downloadcpython-6fdbdb4bf1016be36fe0c0b36c8f6ea438ca6c26.tar.gz
Well that was dumb. platform.python_implementation returns a function, not a
string.
Diffstat (limited to 'Tools/pybench')
-rwxr-xr-xTools/pybench/pybench.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Tools/pybench/pybench.py b/Tools/pybench/pybench.py
index b4982fbd18..e1bc95d05d 100755
--- a/Tools/pybench/pybench.py
+++ b/Tools/pybench/pybench.py
@@ -121,7 +121,8 @@ def get_machine_details():
'platform': platform.platform(),
'processor': platform.processor(),
'executable': sys.executable,
- 'implementation': getattr(platform, 'python_implementation', 'n/a'),
+ 'implementation': getattr(platform, 'python_implementation',
+ lambda:'n/a')(),
'python': platform.python_version(),
'compiler': platform.python_compiler(),
'buildno': buildno,
@@ -837,7 +838,7 @@ python pybench.py -s p25.pybench -c p21.pybench
print 'PYBENCH %s' % __version__
print '-' * LINE
print '* using %s %s' % (
- getattr(platform, 'python_implementation', 'Python'),
+ getattr(platform, 'python_implementation', lambda:'Python')(),
string.join(string.split(sys.version), ' '))
# Switch off garbage collection