(self)
| 1235 | # Used in the event of socket errors. |
| 1236 | # |
| 1237 | def close(self): |
| 1238 | host, connection = self._connection |
| 1239 | if connection: |
| 1240 | self._connection = (None, None) |
| 1241 | connection.close() |
| 1242 | |
| 1243 | ## |
| 1244 | # Send HTTP request. |
no outgoing calls
no test coverage detected