Skip to content

Commit da71ef8

Browse files
committed
make clinic
1 parent 5fd72f0 commit da71ef8

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

Modules/clinic/hmacmodule.c.h

Lines changed: 7 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Modules/hmacmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1061,7 +1061,7 @@ This method may raise a MemoryError.
10611061

10621062
static PyObject *
10631063
_hmac_HMAC_digest_impl(HMACObject *self)
1064-
/*[clinic end generated code: output=5bf3cc5862d26ada input=46ada2d337ddcc85]*/
1064+
/*[clinic end generated code: output=5bf3cc5862d26ada input=a70feb0b8e2bbe7d]*/
10651065
{
10661066
assert(self->digest_size <= Py_hmac_hash_max_digest_size);
10671067
uint8_t digest[Py_hmac_hash_max_digest_size];
@@ -1084,7 +1084,7 @@ This method may raise a MemoryError.
10841084

10851085
static PyObject *
10861086
_hmac_HMAC_hexdigest_impl(HMACObject *self)
1087-
/*[clinic end generated code: output=6659807a09ae14ec input=a7460247846b4c15]*/
1087+
/*[clinic end generated code: output=6659807a09ae14ec input=493b2db8013982b9]*/
10881088
{
10891089
assert(self->digest_size <= Py_hmac_hash_max_digest_size);
10901090
uint8_t digest[Py_hmac_hash_max_digest_size];

0 commit comments

Comments
 (0)