MCPcopy Create free account
hub / github.com/microsoft/debugpy / __delitem__

Method __delitem__

tests/debug/config.py:210–214  ·  view source on GitHub ↗
(self, key)

Source from the content-addressed store, hash-verified

208 return self.config["env"][key]
209
210 def __delitem__(self, key):
211 env = self.config.get("env", {})
212 del env[key]
213 if not len(env):
214 del self.config["env"]
215
216 def __setitem__(self, key, value):
217 self.config.setdefault("env", {})[key] = value

Callers

nothing calls this directly

Calls 1

getMethod · 0.45

Tested by

no test coverage detected