(env, args, **kwargs)
| 161 | return _exec_command(args, shell = False, stdout = None, env = env, **kwargs) |
| 162 | |
| 163 | def env_shell_command(env, args, **kwargs): |
| 164 | return _exec_command(args, shell = True, env = env, **kwargs) |
nothing calls this directly
no test coverage detected