(args, *other_args)
| 831 | """ |
| 832 | |
| 833 | def new_fork_exec(args, *other_args): |
| 834 | import _posixsubprocess # @UnresolvedImport |
| 835 | |
| 836 | if _get_apply_arg_patching(): |
| 837 | args = patch_args(args) |
| 838 | send_process_created_message() |
| 839 | |
| 840 | return getattr(_posixsubprocess, original_name)(args, *other_args) |
| 841 | |
| 842 | return new_fork_exec |
| 843 |
nothing calls this directly
no test coverage detected