-> str.
(self)
| 538 | class OAuthSignatureMethod(object): |
| 539 | """A strategy class that implements a signature method.""" |
| 540 | def get_name(self): |
| 541 | """-> str.""" |
| 542 | raise NotImplementedError |
| 543 | |
| 544 | def build_signature_base_string(self, oauth_request, |
| 545 | oauth_consumer, oauth_token): |
no outgoing calls
no test coverage detected