(app_name, cmd_line, *args)
| 899 | """ |
| 900 | |
| 901 | def new_CreateProcess(app_name, cmd_line, *args): |
| 902 | try: |
| 903 | import _subprocess |
| 904 | except ImportError: |
| 905 | import _winapi as _subprocess |
| 906 | |
| 907 | if _get_apply_arg_patching(): |
| 908 | cmd_line = patch_arg_str_win(cmd_line) |
| 909 | send_process_created_message() |
| 910 | |
| 911 | return getattr(_subprocess, original_name)(app_name, cmd_line, *args) |
| 912 | |
| 913 | return new_CreateProcess |
| 914 |
nothing calls this directly
no test coverage detected