MCPcopy
hub / github.com/tornadoweb/tornado / __delitem__

Method __delitem__

tornado/httputil.py:358–361  ·  view source on GitHub ↗
(self, name: str)

Source from the content-addressed store, hash-verified

356 return self._combined_cache[header]
357
358 def __delitem__(self, name: str) -> None:
359 norm_name = _normalize_header(name)
360 del self._combined_cache[norm_name]
361 del self._as_list[norm_name]
362
363 def __len__(self) -> int:
364 return len(self._as_list)

Callers

nothing calls this directly

Calls 1

_normalize_headerFunction · 0.85

Tested by

no test coverage detected