(args)
| 586 | |
| 587 | |
| 588 | def main(args): |
| 589 | # Otherwise, assume the first parameter is the pid and anything else is code to be executed |
| 590 | # in the target process. |
| 591 | pid = int(args[0]) |
| 592 | del args[0] |
| 593 | python_code = ";".join(args) |
| 594 | |
| 595 | # Note: on Linux the python code may not have a single quote char: ' |
| 596 | run_python_code(pid, python_code) |
| 597 | |
| 598 | |
| 599 | if __name__ == "__main__": |
no test coverage detected