You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: PythonInterpreter/PythonInterpCtrl.cpp
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -169,17 +169,18 @@ long PythonInterpCtrl::LaunchProcess(const wxString &processcmd, const wxArraySt
169
169
{
170
170
if(!IsDead())
171
171
return -1;
172
-
//wxMessageBox(m_portalloc.GetPorts());
173
172
m_port=m_portalloc.RequestPort();
174
173
if(m_port<0)
175
174
return -1;
176
-
//TODO: get the command and working dir from the
175
+
//TODO: XmlRpc over pipe doesn't work because of the way interp.py is implemented
176
+
// m_port = -1; //Use XmlRpc over pipe
177
+
//TODO: get the command and working dir from config
177
178
#ifdef __WXMSW__
178
179
wxString cmd=_T("cmd /c interp.py ")+wxString::Format(_T(" %i"),m_port); //TODO: this could have process destruction issues on earlier version of wxWidgets (kills cmd, but not python)
0 commit comments