os.spawnl(mode, path, arg0, arg1, ...) os.spawnlp(mode, file, arg0, arg1, ...)
(mode, path, *args)
| 766 | |
| 767 | def create_spawnl(original_name): |
| 768 | def new_spawnl(mode, path, *args): |
| 769 | """ |
| 770 | os.spawnl(mode, path, arg0, arg1, ...) |
| 771 | os.spawnlp(mode, file, arg0, arg1, ...) |
| 772 | """ |
| 773 | if _get_apply_arg_patching(): |
| 774 | args = patch_args(args) |
| 775 | send_process_created_message() |
| 776 | |
| 777 | return getattr(os, original_name)(mode, path, *args) |
| 778 | |
| 779 | return new_spawnl |
| 780 |
nothing calls this directly
no test coverage detected