Use defaults if sys.executable isn't set (e.g. on Jython).

This change allows running PyBench under Jython.
diff --git a/Lib/platform.py b/Lib/platform.py
index d6c0c17..86b4b10 100755
--- a/Lib/platform.py
+++ b/Lib/platform.py
@@ -963,7 +963,10 @@
         bits = str(size*8) + 'bit'
 
     # Get data from the 'file' system command
-    output = _syscmd_file(executable,'')
+    if executable:
+        output = _syscmd_file(executable, '')
+    else:
+        output = ''
 
     if not output and \
        executable == sys.executable: