(*args)
| 848 | """ |
| 849 | |
| 850 | def new_warn_fork_exec(*args): |
| 851 | try: |
| 852 | import _posixsubprocess |
| 853 | |
| 854 | warn_multiproc() |
| 855 | return getattr(_posixsubprocess, original_name)(*args) |
| 856 | except: |
| 857 | pass |
| 858 | |
| 859 | return new_warn_fork_exec |
| 860 |
nothing calls this directly
no test coverage detected