Return a copy of the default headers. :rtype: dict[str, str]
(self)
| 126 | self._default_headers = deepcopy(default_headers) |
| 127 | |
| 128 | def default_headers(self): |
| 129 | """ |
| 130 | Return a copy of the default headers. |
| 131 | |
| 132 | :rtype: dict[str, str] |
| 133 | """ |
| 134 | return deepcopy(self._default_headers) |
| 135 | |
| 136 | def subresource(self, subpath): |
| 137 | """ |
no outgoing calls
no test coverage detected