(self, names)
| 1666 | def get(self, key, default=None, index=-1): |
| 1667 | return MultiDict.get(self, _hkey(key), default, index) |
| 1668 | def filter(self, names): |
| 1669 | for name in map(_hkey, names): |
| 1670 | if name in self.dict: |
| 1671 | del self.dict[name] |
| 1672 | |
| 1673 | |
| 1674 | class WSGIHeaderDict(DictMixin): |
no outgoing calls
no test coverage detected