(arg_str)
| 673 | |
| 674 | |
| 675 | def patch_arg_str_win(arg_str): |
| 676 | args = str_to_args_windows(arg_str) |
| 677 | # Fix https://youtrack.jetbrains.com/issue/PY-9767 (args may be empty) |
| 678 | if not args or not is_python(args[0]): |
| 679 | return arg_str |
| 680 | arg_str = " ".join(patch_args(args)) |
| 681 | pydev_log.debug("New args: %s", arg_str) |
| 682 | return arg_str |
| 683 | |
| 684 | |
| 685 | def monkey_patch_module(module, funcname, create_func): |
no test coverage detected