(self)
| 367 | return iter(self._as_list) |
| 368 | |
| 369 | def copy(self) -> "HTTPHeaders": |
| 370 | # defined in dict but not in MutableMapping. |
| 371 | return HTTPHeaders(self) |
| 372 | |
| 373 | # Use our overridden copy method for the copy.copy module. |
| 374 | # This makes shallow copies one level deeper, but preserves |