Launch fails if path to python module contains spaces
Status: Pre-Alpha
Brought to you by:
arkaitz
Test:
Create a python module in a directory whose path
contains spaces (very common on Windows). Then try
to launch the module using the PyEclipse launch
extension.
Cause:
PythonLaunchConfigurationDelegate.java uses
Runtime.exec(String cmd) to launch the Python
module, with no shell quoting. I think it will work cross-
platorm if this is changed to use Runtime.exec(String[]
args) instead.
Me:
David Mandelin
mandelin@cs.berkeley.edu