close all open connections
(self)
| 202 | h.close() |
| 203 | |
| 204 | def close_all(self): |
| 205 | """close all open connections""" |
| 206 | for host, conns in self._cm.get_all().items(): |
| 207 | for h in conns: |
| 208 | self._cm.remove(h) |
| 209 | h.close() |
| 210 | |
| 211 | def _request_closed(self, request, host, connection): |
| 212 | """tells us that this request is now closed and the the |
no test coverage detected