MCPcopy
hub / github.com/google/clusterfuzz / remove_key

Function remove_key

src/clusterfuzz/_internal/system/environment.py:821–829  ·  view source on GitHub ↗

Remove environment |key| and its associated value.

(key_name)

Source from the content-addressed store, hash-verified

819
820
821def remove_key(key_name):
822 """Remove environment |key| and its associated value."""
823 if not key_name:
824 return
825
826 if key_name not in os.environ:
827 return
828
829 del os.environ[key_name]
830
831
832# Used by reset_environment to store the initial environment.

Callers 1

get_asan_optionsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected