(key, system=True, user=True)
| 441 | |
| 442 | |
| 443 | def win_delete_environment_variable(key, system=True, user=True): |
| 444 | debug_print(f'win_delete_environment_variable(key={key}, system={system})') |
| 445 | return win_set_environment_variable(key, None, system, user) |
| 446 | |
| 447 | |
| 448 | # Returns the absolute pathname to the given path inside the Emscripten SDK. |
nothing calls this directly
no test coverage detected