We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d3b8d1 commit b1b3b1eCopy full SHA for b1b3b1e
.gitignore
@@ -26,7 +26,6 @@ Debug/
26
Release/
27
PythonDebug/
28
x64/
29
-packages/
30
ipch/
31
*.pyc
32
_ReSharper.*/
PythonScript/src/PythonHandler.cpp
@@ -258,8 +258,8 @@ void PythonHandler::initSysArgv()
258
argvList.append(boost::python::handle<>(unicodeArg));
259
}
260
261
- //boost::python::object sysModule(boost::python::handle<>(boost::python::borrowed(PyImport_AddModule("sys"))));
262
- //sysModule.attr("argv") = argvList;
+ boost::python::object sysModule(boost::python::handle<>(boost::python::borrowed(PyImport_AddModule("sys"))));
+ sysModule.attr("argv") = argvList;
263
264
265
0 commit comments