| 60 | } |
| 61 | |
| 62 | void |
| 63 | PythonWrapper::resetCommandLine(int nArgs, int cArg, PyObject* argv) |
| 64 | { |
| 65 | numberArgs = nArgs; |
| 66 | currentArg = cArg-1; |
| 67 | if (currentArg < 0) currentArg = 0; |
| 68 | currentArgv = argv; |
| 69 | } |
| 70 | |
| 71 | void |
| 72 | PythonWrapper::resetCommandLine(int cArg) |
no outgoing calls
no test coverage detected