(self, connection, headers)
| 1273 | # @param headers list of key,value pairs for HTTP headers |
| 1274 | |
| 1275 | def send_headers(self, connection, headers): |
| 1276 | for key, val in headers: |
| 1277 | connection.putheader(key, val) |
| 1278 | |
| 1279 | ## |
| 1280 | # Send request body. |