(self)
| 227 | return iter(self._dict) |
| 228 | |
| 229 | def copy(self) -> "HTTPHeaders": |
| 230 | # defined in dict but not in MutableMapping. |
| 231 | return HTTPHeaders(self) |
| 232 | |
| 233 | # Use our overridden copy method for the copy.copy module. |
| 234 | # This makes shallow copies one level deeper, but preserves |