(mode, path, args, env)
| 801 | """ |
| 802 | |
| 803 | def new_spawnve(mode, path, args, env): |
| 804 | if _get_apply_arg_patching(): |
| 805 | args = patch_args(args) |
| 806 | send_process_created_message() |
| 807 | |
| 808 | return getattr(os, original_name)(mode, path, args, env) |
| 809 | |
| 810 | return new_spawnve |
| 811 |
nothing calls this directly
no test coverage detected