MCPcopy Create free account
hub / github.com/EasyIME/PIME / __delitem__

Method __delitem__

python/python3/tornado/httputil.py:218–221  ·  view source on GitHub ↗
(self, name: str)

Source from the content-addressed store, hash-verified

216 return self._dict[_normalize_header(name)]
217
218 def __delitem__(self, name: str) -> None:
219 norm_name = _normalize_header(name)
220 del self._dict[norm_name]
221 del self._as_list[norm_name]
222
223 def __len__(self) -> int:
224 return len(self._dict)

Callers

nothing calls this directly

Calls 1

_normalize_headerFunction · 0.85

Tested by

no test coverage detected