There was an error while loading. Please reload this page.
1 parent b8bd6a5 commit 3e389b3Copy full SHA for 3e389b3
1 file changed
Modules/hmacmodule.c
@@ -271,14 +271,6 @@ get_hmacmodule_state(PyObject *module)
271
return (hmacmodule_state *)state;
272
}
273
274
-static inline hmacmodule_state *
275
-get_hmacmodule_state_by_cls(PyTypeObject *cls)
276
-{
277
- void *state = PyType_GetModuleState(cls);
278
- assert(state != NULL);
279
- return (hmacmodule_state *)state;
280
-}
281
-
282
// --- HMAC Object ------------------------------------------------------------
283
284
typedef Hacl_Streaming_HMAC_agile_state HACL_HMAC_state;
0 commit comments