diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2022-03-05 15:47:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-05 15:47:00 (GMT) |
commit | 6927632492cbad86a250aa006c1847e03b03e70b (patch) | |
tree | e78631ceabf92fb41ab1deb78a024d2704a3eddb /Modules/_blake2 | |
parent | ab9301a28fa431d7a32163126fc96de3b2ce6107 (diff) | |
download | cpython-6927632492cbad86a250aa006c1847e03b03e70b.zip cpython-6927632492cbad86a250aa006c1847e03b03e70b.tar.gz cpython-6927632492cbad86a250aa006c1847e03b03e70b.tar.bz2 |
Remove trailing spaces (GH-31695)
Diffstat (limited to 'Modules/_blake2')
-rw-r--r-- | Modules/_blake2/blake2s_impl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/_blake2/blake2s_impl.c b/Modules/_blake2/blake2s_impl.c index 763c017..4812730 100644 --- a/Modules/_blake2/blake2s_impl.c +++ b/Modules/_blake2/blake2s_impl.c @@ -18,7 +18,7 @@ #endif #include "Python.h" -#include "pycore_strhex.h" // _Py_strhex() +#include "pycore_strhex.h" // _Py_strhex() #include "../hashlib.h" #include "blake2ns.h" @@ -37,6 +37,7 @@ #include "impl/blake2s-ref.c" #endif + extern PyType_Spec blake2s_type_spec; typedef struct { |