(executable, args, env, **kwargs)
| 816 | """ |
| 817 | |
| 818 | def new_posix_spawn(executable, args, env, **kwargs): |
| 819 | if _get_apply_arg_patching(): |
| 820 | args = patch_args(args) |
| 821 | send_process_created_message() |
| 822 | |
| 823 | return getattr(os, original_name)(executable, args, env, **kwargs) |
| 824 | |
| 825 | return new_posix_spawn |
| 826 |
nothing calls this directly
no test coverage detected