(self)
| 201 | bucket_region, self.headers, self.body) |
| 202 | |
| 203 | def get_triplet(self): |
| 204 | self.update_timestamp() |
| 205 | self.sign() |
| 206 | |
| 207 | resource = dict(self.resource) ## take a copy |
| 208 | |
| 209 | # URL Encode the uri for the http request |
| 210 | resource['uri'] = s3_quote(resource['uri'], quote_backslashes=False, unicode_output=True) |
| 211 | # Get the final uri by adding the uri parameters |
| 212 | resource['uri'] += format_param_str(self.params) |
| 213 | return (self.method_string, resource, self.headers) |
| 214 | |
| 215 | class S3(object): |
| 216 | http_methods = BidirMap( |
no test coverage detected