(self, key, msg=None)
| 1232 | class PyUpdateTestCase(PyModuleMixin, UpdateTestCaseMixin, unittest.TestCase): |
| 1233 | |
| 1234 | def HMAC(self, key, msg=None): |
| 1235 | return self.hmac.HMAC(key, msg, digestmod='sha256') |
| 1236 | |
| 1237 | @property |
| 1238 | def gil_minsize(self): |
no outgoing calls
no test coverage detected