os.spawnv(mode, path, args) os.spawnvp(mode, file, args)
(mode, path, args)
| 781 | |
| 782 | def create_spawnv(original_name): |
| 783 | def new_spawnv(mode, path, args): |
| 784 | """ |
| 785 | os.spawnv(mode, path, args) |
| 786 | os.spawnvp(mode, file, args) |
| 787 | """ |
| 788 | if _get_apply_arg_patching(): |
| 789 | args = patch_args(args) |
| 790 | send_process_created_message() |
| 791 | |
| 792 | return getattr(os, original_name)(mode, path, args) |
| 793 | |
| 794 | return new_spawnv |
| 795 |
nothing calls this directly
no test coverage detected